motherfucking git

This commit is contained in:
minjaesong
2019-10-14 15:40:01 +09:00
parent 1190974901
commit 4eb1940d13
13 changed files with 311 additions and 74 deletions

View File

@@ -114,8 +114,6 @@ class TitleScreen(batch: SpriteBatch) : IngameInstance(batch) {
private val gradWhiteBottom = Color(0xd8d8d8ff.toInt())
lateinit var logo: TextureRegion
val uiContainer = ArrayList<UICanvas?>()
private lateinit var uiMenu: UICanvas
@@ -174,9 +172,6 @@ class TitleScreen(batch: SpriteBatch) : IngameInstance(batch) {
initViewPort(AppLoader.screenW, AppLoader.screenH)
logo = TextureRegion(Texture(Gdx.files.internal("assets/graphics/logo_placeholder.tga")))
logo.flip(false, true)
Gdx.input.inputProcessor = TitleScreenController(this)
@@ -317,7 +312,6 @@ class TitleScreen(batch: SpriteBatch) : IngameInstance(batch) {
}
override fun dispose() {
logo.texture.dispose()
uiMenu.dispose()
demoWorld.dispose()
}