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; }
public void FindGameRuleComponent(){ gameRuleSettings = FindObjectOfType<GameRuleSettings>(); }