preliminary skybox model 1

This commit is contained in:
minjaesong
2023-07-10 02:57:41 +09:00
parent c93b70f537
commit b6b98562a2
7 changed files with 218 additions and 128 deletions

View File

@@ -0,0 +1,16 @@
package net.torvald.terrarum.modulebasegame.clut
import com.badlogic.gdx.graphics.Texture
/**
* Created by minjaesong on 2023-07-09.
*/
object Skybox {
const val gradSize = 64
operator fun get(solarHeight: Double): Array<Texture> {
TODO()
}
}

View File

@@ -153,7 +153,7 @@ class UIWorldPortalSearch(val full: UIWorldPortal) : UICanvas() {
// name/seed input labels
App.fontGame.draw(batch, Lang["MENU_NAME"], drawX, drawY + sizeSelY + 80)
App.fontGame.draw(batch, Lang["CONTEXT_GENERATOR_SEED"], drawX, drawY + sizeSelY + 120)
App.fontGame.draw(batch, Lang["CONTEXT_PLACE_COORDINATE"], drawX, drawY + sizeSelY + 120)
uiItems.forEach { it.render(batch, camera) }