유니티 공식 2D 지원 및 관련 동영상 Unity 4.3 - 2D Game Development Walkthrough

|



Trackback 0 And Comment 0

유니티 관련 sample game들

|



Trackback 0 And Comment 0

유니티 관련 컴포넌트 추가 방법

|
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    public SphereCollider sc;
    void Example() {
        gameObject.AddComponent("FoobarScript");
        sc = gameObject.AddComponent("SphereCollider") as SphereCollider;
    }
}


Trackback 0 And Comment 0