예제 #1
0
 // -- lifecycle --
 protected void Start()
 {
     mDoor         = GetComponent <Door>();
     mHover        = GetComponentInChildren <Interact.OnHover>();
     mAmbientSound = GetComponent <AmbientSound>();
 }
예제 #2
0
파일: Food.cs 프로젝트: tycobbb/insomnia
 // -- lifecycle --
 protected void Start()
 {
     mHover = GetComponent <Interact.OnHover>();
 }
예제 #3
0
파일: Fan.cs 프로젝트: tycobbb/insomnia
 // -- lifecycle --
 protected void Awake()
 {
     mHover = GetComponent <Interact.OnHover>();
     mSound = GetComponent <AudioSource>();
 }
예제 #4
0
 // -- lifecycle --
 void Awake()
 {
     mHover    = fMoon.GetComponent <Interact.OnHover>();
     mAnimator = GetComponent <Animator>();
 }