일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- game
- php 홈디렉토리 변경방법
- 안드로이드
- 어플
- 아이패드
- unity
- 변경된 정보
- 스랄 특성
- 비행기 모드
- 컬렉션 프레임
- 리눅스
- tcp
- 기업의 행포
- Collection Framework
- 나지보 특성
- 에셋
- 집 정리
- 자바
- 게임
- End of Darkness
- TCP 네트워크 방식의 연결
- 아이폰
- 안드로이드 Application Lifecycle
- tcp네트워크
- 명령어
- 벨팡
- 포트(Port)
- 히오스
- 소캣(Socket)
- 나지보
- Today
- Total
목록Unity3D (108)
Do Something IT
please uninstall visual studio professional 2013 and retry 로 삭제가 안될때 Check registry for this key "SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\professional". If present remove it. Then install Community Edition.shareimprove this answeranswered Dec 17 '14 at 14:11mmosti962add a commentup vote7down voteAlso check registry key HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DevDiv\vs\Servicing\12.0
최근 주목 하는 게임이 있다 데스티니 차일드라는 게임인데이 게임 live2D라는 엔진을 사용 하여 원화 레이어 애니메이션의 극을 이뤄 낸듯 하다.해당 정보는 아래사이트에서 잘 알수있다.바로가기
using UnityEngine; using System.Collections; //[AddComponentMenu("SilverStorm/Utility/HUDFPS")] public class HUDFPS : MonoBehaviour { // Attach this to a GUIText to make a frames/second indicator. // // It calculates frames/second over each updateInterval, // so the display does not keep changing wildly. // // It is also fairly accurate at very low FPS counts (
using UnityEngine; public abstract class MonoSingleton : MonoBehaviour where T : MonoSingleton { private static T m_Instance = null; public static T Instance { get { if (m_Instance == null) { m_Instance = GameObject.FindObjectOfType(typeof(T)) as T; if (m_Instance == null) { //Debug.LogError("No instance of " + typeof(T).ToString()); Debug.Log("No instance of " + typeof(T).ToString()); } else { ..