글쓴이 글 목록: bigflood

페이지 플리퍼! Android/iOS Game: Page Flipper!!

새로운 스타일의 심플한 캐주얼 게임! Page Flipper를 경험해보세요! 한 장씩 넘어오는 페이지가 찢겨지지 않도록 캐릭터를 이동하며 큐브를 획득해 보세요! 빠르고 정확한 판단력을 가진 당신이라면 더 많은 페이지로 진행할 수 있습니다. 순발력 있게 큐브를 획득하면 할수록 더 높은 레벨의 캐릭터를 가질 … 계속 읽기

카테고리: game | 태그: , , , , , | 댓글 남기기

Unity3d에서 sprite 리스트를 자동 등록하는 Editor기능 만들기 (to generate sprite list automatically)

다음과 같은 스프라이트리스트를 가진 스크립트있다고 가정: Assets/Editor폴더안에 editor용 스크립트를 만든다:

카테고리: unity3d | 태그: , , | 댓글 남기기

페이지 플리퍼! Android Game: Page Flipper published today!

새로운 스타일의 심플한 캐주얼 게임! Page Flipper를 경험해보세요! 한 장씩 넘어오는 페이지가 찢겨지지 않도록 캐릭터를 이동하며 큐브를 획득해 보세요! 빠르고 정확한 판단력을 가진 당신이라면 더 많은 페이지로 진행할 수 있습니다. 순발력 있게 큐브를 획득하면 할수록 더 높은 레벨의 캐릭터를 가질 … 계속 읽기

카테고리: game | 태그: , , , , | 댓글 남기기

샘플코드로 보는 C#기능들

Constraints on Type Parameters Anonymous Types Lambda Expressions LINQ Query Expressions yield var using statement using block volatile ?? operator Verbatim string literals object initializers #if DEBUG static constructors Conditional string Format checked and unchecked

카테고리: language | 태그: | 댓글 남기기

python으로 C++ 소스코드 파싱하기 (to parse C++ source code with Python)

LLVM( http://llvm.org )의 clang라이브러리를 사용해서 C++코드를 파싱할 수 있다. libclang은 python바인딩이 있어서 python에서도 활용가능하다^^ 준비: python 2.7이상 32비트버젼 (windows 7에서 테스트했을때 64비트버젼은 호환하지 않는거같음. clang dll을 로드하지 못함) -> http://python.org/download/ pip (python 모듈들을 손쉽게 설치할 수 있음) -> http://www.pip-installer.org/en/latest/installing.html (설치후 … 계속 읽기

카테고리: clang, llvm, python | 댓글 남기기

ZenWheels 고장 셀프수리

ZenWheels를 선물받았는데, 뒷바퀴만 작동하지않는 사태 발생 ㅠㅜ 프레임을 열어보닌 뒷바퀴 모터랑 연결되는 걸로 추정되는 전선이 납땜부위에서 떨어저 있는걸 발견하고, 인두가 없어서 스카치테입으로 간단히 해결~ㅋ  

카테고리: Uncategorized | 태그: , , , | 댓글 남기기

Ambient Cube lighting

Ambient Cube를 사용해서 Ambient 라이팅 계산: float3 ambientCubeLighting( float3 ambientColors[6], float3 N ) { // N = normal vector (unit) float3 nSquared = N * N; int3 isNegative = (N < 0); float3 ambientColor = nSquared.x * AmbientColors[isNegative.x] + nSquared.y … 계속 읽기

카테고리: Uncategorized | 태그: , , , | 댓글 남기기

MAC OS X에서 JRE(Java Runtime Env.)위치 얻기

디폴트 JRE: 특정 버전의 JRE:

카테고리: java | 태그: , , | 댓글 남기기

Eclipse + Scala + openGL 개발환경

JSK (Java SE)설치 eclipse설치 Scala-IDE설치 JOGL다운로드하고 적절한 폴더에 압축풀기 ( http://jogamp.org/: jogamp-all-platforms.7z ) eclipse에서 User Library생성 Windows > Preferences Java > Build Path > User Libraries New.. (not system library) jogl.all.jar glugen-rt.jar jogl-all-natives-windows-amd64.jar (64비트 윈도우즈의 경우) newt.event.jar native library location설정 … 계속 읽기

카테고리: scala | 태그: , , | 댓글 남기기

eclipse로 scala개발 환경 준비

JDK (Java SE) 설치 http://www.oracle.com/technetwork/java/javase/downloads/index.html eclipse설치 eclipse 다운로드 사이트에서 Eclipse IDE for Java Developers를 다운로드 ( http://eclipse.org/downloads/ ) 적당한 폴더에 압축을 풀면 됨 (설치가 필요 없음) scala-ide설치 ( scala-ide.org) eclipse실행 Help / Install New Software.. 메뉴 선택 Add.. 버튼 scala-ide사이트에서 … 계속 읽기

카테고리: scala | 태그: , | 1개의 댓글