URL: http://docs.unity3d.com/Documentation/ScriptReference/Transform-parent.html ゲーム開発の民主化を謳うUnityだが、公式サンプルにコードは有るが何の説明もない・・。 using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Example() { transform.parent = null; ...
↧