검색결과 리스트
플랫폼전처리기에 해당되는 글 1건
- 2016.08.16 [유니티] 플랫폼별 전처리기
글
스터디/Unity
2016. 8. 16. 23:50
[유니티] 플랫폼별 전처리기
피씨에서는 마우스나 키보드 인풋이고, 폰이나 타블렛에서는 터치 인풋을 받으려면 아래와 같이 플랫폼별로 다르게 작성해줘야함
http://docs.unity3d.com/Manual/PlatformDependentCompilation.html
using UnityEngine; using System.Collections; public class ClassName : MonoBehaviour { void Start () { #if UNITY_EDITOR Debug.Log("Unity Editor"); #endif #if UNITY_IPHONE Debug.Log("Iphone"); #endif
#if UNITY_ANDROID Debug.Log(“Android"); #endif #if UNITY_WEBPLAYER Debug.Log(“web player"); #endif #if UNITY_STANDALONE_OSX Debug.Log("Stand Alone OSX"); #endif } } |
'스터디 > Unity' 카테고리의 다른 글
[자료] 유니티 UI 디자인 교과서 - 예제 코드 (0) | 2016.09.17 |
---|---|
[유니티] Vuforia 마커 테스트 (0) | 2016.08.17 |
[유니티] 네트워크 The Basics of Unity 5 Networking (0) | 2016.08.02 |
[유니티] 엑셀 파일을 XML로 변환하는 사이트 MR.Data Converter (0) | 2016.07.26 |
[유니티] 유니티5 액션 RPG 전투 입문 강좌 수강 (0) | 2016.07.20 |
RECENT COMMENT