일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 밴스드 설치
- 본전통 철당간
- 유튜브모바일광고차단앱
- 인텍스 매치
- ads.txt 가 무었인가요
- 믄재인
- 아무도 흔들 수 없는 나라
- 사단장이보고있다
- 테슬라공장
- 유튜브 밴스트 설치
- 밴스드설치방법
- UFO
- 청상추 삼겹살
- aa77
- 청주 철당간
- youtube vanced설치
- portwell
- 예능에서 효과
- 최고의PC
- 사단장이 보고있다.
- 성안길 철당간
- 사운드 효과
- Alien
- 최상위PC
- index match
- 포트웰
- 아듀이노 8
- 아듀이노 프로
- 비듬나물 무침
- godot
- Today
- Total
목록Game publisher/LibGDX (6)
Dreams Come True Studio
LIBGDX lunch with android and desktop 자체 제작
sudo add-apt-repository ppa:obsproject/obs-studio sudo apt update sudo apt install obs-studioOBS Studio 설치 Main FeaturesMultiple Scenes to switch between seamlessly via custom transitionsFilters for video sourcesAudio mixer with filtersPowerful and easy to use configuration optionsStreamlined Settings panel for tweaking configurationsLive streaming support
VisEditorLIBGDX UI 및 scene 배치 한다. 그래들 추가 visRuntimeVersion = '0.3.1' compile "com.kotcrab.vis:vis-runtime-gwt:$visRuntimeVersion" compile "com.kotcrab.vis:vis-runtime-gwt:$visRuntimeVersion:sources" compile "com.kotcrab.vis:vis-runtime:$visRuntimeVersion:sources"
libgdx 로그 출력실행 로그로 디버그시 필요 하다. Gdx.app.log("MyTag", "my informative message"); Gdx.app.error("MyTag", "my error message"); Gdx.app.debug("MyTag", "my error message"); 아드로드와 달리 run 쪽에 표시 된다., Log.d 는 안되는 듯하다. public class GoGame extends Game { public static String LOG = GoGame.class.getSimpleName(); @Override public void create() { // TODO Auto-generated method stub Gdx.app.log(GoGame.LOG, "게임이 생..
package com.mygdx.game; import com.badlogic.gdx.ApplicationAdapter; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.SpriteBatch; public class MyGdxGame extends ApplicationAdapter { SpriteBatch batch; Texture img; @Override public void create () { batch = new SpriteBatch(); img = new Texture("badlog..
LIBGDX DESKTOP SCREEN SIZE 변경 import com.badlogic.gdx.backends.lwjgl.LwjglApplication; import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration; import com.mygdx.game.MyGdxGame; public class DesktopLauncher { public static void main(String[] arg) { LwjglApplicationConfiguration config = new LwjglApplicationConfiguration (); config.width = 460; config.height = 800; new LwjglApplicatio..