void Start() { playerManager = GetComponent <PlayerManager>(); rigidbody = GetComponent <Rigidbody>(); inputHandler = GetComponent <InputHandler>(); animtorHandler = GetComponentInChildren <AnimatorHandler>(); cameraObject = Camera.main.transform; myTransform = transform; animtorHandler.Initialize(); playerManager.isGrounded = true; ignoreForGroundCheck = ~(1 << 8 | 1 << 11); }
private void Awake() { animatorHandler = GetComponentInChildren <AnimatorHandler>(); healthBar = FindObjectOfType <HealthBar>(); staminaBar = FindObjectOfType <StaminaBar>(); }
private void Awake() { animatorHandler = GetComponentInChildren <AnimatorHandler>(); weaponSlotManager = GetComponentInChildren <WeaponSlotManager>(); inputHandler = GetComponent <InputHandler>(); }