반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 청상추 삼겹살
- 밴스드 설치
- Alien
- 최상위PC
- UFO
- 아듀이노 프로
- youtube vanced설치
- 유튜브모바일광고차단앱
- 청주 철당간
- 포트웰
- 본전통 철당간
- 예능에서 효과
- index match
- 유튜브 밴스트 설치
- portwell
- 아무도 흔들 수 없는 나라
- 인텍스 매치
- aa77
- 사단장이 보고있다.
- 사단장이보고있다
- 사운드 효과
- 밴스드설치방법
- 테슬라공장
- 성안길 철당간
- godot
- 비듬나물 무침
- 아듀이노 8
- 믄재인
- 최고의PC
- ads.txt 가 무었인가요
Archives
- Today
- Total
Dreams Come True Studio
libgdx 로그 출력 본문
반응형
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, "게임이 생성되었습니다.");
}
MyTag: my informative message
MyTag: my informative message
MyTag: my error message
MyTag: my informative message
MyTag: my error message
MyTag: my informative message
MyTag: my error message
MyTag: my informative message
반응형
'Game publisher > LibGDX' 카테고리의 다른 글
LIBGDX lunch with android and desktop (0) | 2017.11.14 |
---|---|
OBS Studio 설치 화면 녹화 (0) | 2017.11.14 |
VisEditor (0) | 2017.11.13 |
LIBGDX basic code (0) | 2017.11.13 |
LIBGDX DESKTOP SCREEN SIZE 변경 (0) | 2017.11.13 |
Comments