SlothController.Awake C# (CSharp) Method

Awake() private method

private Awake ( ) : void
return void
	void Awake () {
        //Get components
        _rigidBody = GetComponent<Rigidbody>();
        _animator = gameObject.GetComponentInChildren<Animator>();
		_ragdollToggle = GetComponent<RagdollToggle>();
		//Set default values
		gameObject.tag = "SlothNinja";
        ANIMTIMEBEFOREMOVE = ExtendArmClip.length;
    }