본문 바로가기

분류 전체보기51

개인 정보 처리 방침 ('http://cyjses.tistory.com'이하 'Jeon Entertainment') 은(는) 「개인정보 보호법」 제30조에 따라 정보주체의 개인정보를 보호하고 이와 관련한 고충을 신속하고 원활하게 처리할 수 있도록 하기 위하여 다음과 같이 개인정보 처리방침을 수립·공개합니다. ○ 이 개인정보처리방침은 2022년 1월 1부터 적용됩니다. 제1조(개인정보의 처리 목적) ('http://cyjses.tistory.com'이하 'Jeon Entertainment') 은(는) 다음의 목적을 위하여 개인정보를 처리합니다. 처리하고 있는 개인정보는 다음의 목적 이외의 용도로는 이용되지 않으며 이용 목적이 변경되는 경우에는 「개인.. 2020. 6. 13.
libgdx - Convert c ++ bullet file to libgdx file - 2( terrainDemo ) 먼저 world 세팅을 cpp 소스와 맞춰주도록 하겠습니다. broadphase를 없애고 overlappingPairCache를 넣습니다. 실행을 시키면 별로 달라진 점은 없네요. 이 부분을 바꿔보도록 합시다. 똑같이 포팅하도록 하겠습니다. typedef float btScalar; btScalar는 float입니다. 2019. 12. 17.
libgdx - Convert c ++ bullet file to libgdx file - 1( terrainDemo ) Let's port the terrainDemo with reference to basicDemo porting in the previous chapter. 앞장의 basicDemo porting을 참고로 terrainDemo를 porting 해 보겠습니다. 1 2 3 4 5 6 7 8 9 10 11 12 #include "TerrainDemo.h" #include "GlutStuff.h" int main(int argc,char** argv) { DemoApplication * demo = btCreateTerrainDemo(); btAssert(demo && "failed to create terrain demo object"); return glutmain(argc, argv, 800, 600, ".. 2019. 12. 14.
Jmonkey into Intellij (for android development) Let's make the Jmonkey project from the previous post available in Intellij. The wiki already says that you can port to various development tools, but there is no automated version yet. So we will use some non-official versions. 이전 포스트의 Jmonkey 프로젝트를 Intellij에서 사용할 수 있도록 해보겠습니다. 이미 wiki에는 각종 개발툴에 포팅이 가능하다고 되어있으나, 자동화된 버전은 아직 없는것 같습니다. 그래서 몇몇 official이 아닌 버전을 이용하도록 하겠습니다. https://github.com/luna-.. 2019. 12. 4.
Jmonkey base scene initialize (sdk) Install sdk from the Jmonkey wiki. Jmonkey wiki 에서 sdk를 설치합니다. Create a new project with new Project-> JME3-> BasicGame. new Project -> JME3 -> BasicGame 으로 새 프로젝트를 만듭니다. Press the arrow to run 화살표를 눌러 실행해봅니다 It's a bit unnatural because it takes up all the input. I think it's because Jmonkey started a program for desktop. First change the input. 실행화면이 나오는데 입력을 모두 가져가기 때문에 약간 부자연스럽습니다. Jmonkey가 .. 2019. 12. 3.
adMob - reward, libgdx adMob 광고 연결3 (reward, libgdx) First, modify mainPage to get the timing. 우선 타이밍을 잡기 위해서 mainPage를 수정합니다. 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 32 33 34 35 36 stage = new Stage(new StretchViewport(Gdx.graphics.getWidth(), Gdx.graphics.getHeight())); VerticalGroup verticalGroup = new VerticalGroup(); verticalGroup.setFillParent(true); stage.addActor(ver.. 2019. 11. 30.