본문 바로가기

분류 전체보기125

50 Tips for Working with Unity (Best Practices) 출처 : http://devmag.org.za/2012/07/12/50-tips-for-working-with-unity-best-practices/ 2012년 7월 12일 작성된걸 보니 Unity3D 4가 나오기 전이다. (현재 Unity3D 4.1) 한글 번역은 요기 : http://smilejsu.tistory.com/476 를 참조해 주시고 나름 번역은 차차 해보겠음 About these tips These tips are not all applicable to every project. They are based on my experience with projects with small teams from 3 to 20 people. There’s is a price for structure, .. 2014. 11. 26.
엑셀 style 지우기 (XLStylesTool) XLStylesTool ● Legacy Windows 7 app https://sergeig888.wordpress.com/2011/03/21/net4-0-version-of-the-xlstylestool-is-now-available/ ● Windows 8 or later versions in the Windows App Store 2014. 11. 4.
Asset Store 구입한 패키지 저장되는 경로 Windows : \Users\accountName\AppData\Roaming\Unity\Asset Store Mac : "open ~/Library/Unity/Asset Store" 2014. 10. 11.
Ran out of trampolines of type 2 - iOS Unity3D에서 iOS 빌드시 발생하는 에러 원인 : -> iOS를 이용하는 MONO 프로젝트의 가상머신 호환성 문제로 생겨나는 에러. -> 너무 많은 재귀호출이 될때 발생되는 문제.-> 이해를 위한 링크 : http://www.unitystudy.net/bbs/board.php?bo_table=dustin&wr_id=365-> Unity3D Forum에서도 확인 가능 : http://unity3d.com/search?refinement=answers&gq=Ran%20out%20of%20trampolines%20of%20type%202 해결법 : Build Settings -> Player Settings -> Optimizatoin -> AOT Compilation Options -> nimt-tra.. 2014. 10. 10.
NullReferenceException: Object reference not set to an instance of an object Gem이란 GameObject를 Instantiate해서 내부 Script component를 쓸 때, 변수 선언부에 public List gems = new List();이런식으로 하면 NullReferenceException! 발생. 클래스 멤버 변수 초기화 문제로위와 같은 식의 초기화는 start() 호출 시점에 할당 됨. 그러므로, 변수 선언부엔 public List gems = null; 그리고 초기화하는 곳에서gems = new List(); 으로 할당해 준다. 2014. 10. 10.
유즈 케이스 예 제 목 : 해당 유즈 케이스를 식별 할 수 있는 간단한 문장 설 명 : 해당 유즈 케이스를 두세 줄의 문장으로 요약하고 그 범위를 정의 기본과정 : 유즈 케이스의 단계 목록, 조건 논리를 간략화 시켜서 기술하고 다른 쓰임새가 있을 경우 참조한다 확 장 : 특정 조건에 따라 변경되는 조건들의 목록 선 조 건 : 유즈 케이스가 성공적으로 실행되기 위한 조건들의 목록 후 조 건 : 유즈 케이스가 성공적으로 실행되어 산출되는 조건들의 목록 비 고 : 추가 정보와 다른 필드로 구분하기에는 난잡한 기타 세부사항들에 대한 메모 2014. 10. 10.