void Start () {
			status = GetComponent<CharaStatus> ();
			charaAnimation = GetComponent<CharaAnimation> ();
			inputManager = FindObjectOfType<InputManager>();
			gameRuleSettings = FindObjectOfType<GameRuleSettings>();
			targetCursor = FindObjectOfType<TargetCursor>();
			targetCursor.SetPosition (transform.position);

			//オーディオの初期化
			deathSeAudio = gameObject.AddComponent<AudioSource>();
			deathSeAudio.loop = false;
			deathSeAudio.clip = deathSeClip;
		}
Example #2
0
			public void FindGameRuleComponent(){
				gameRuleSettings = FindObjectOfType<GameRuleSettings>();		
			}