public Pewter(Transform player) : base(player) { this.burnFactor = 2.0f; this.flareFactor = this.burnFactor * 3.0f; this.playerScript = player.GetComponent <Allomancer>(); }
public static void RemoveAllomancer(Allomancer allomancer) { Allomancers.Remove(allomancer); }
public static void AddAllomancer(Allomancer allomancer) { Allomancers.Add(allomancer); }
private void Awake() { characterScript = GetComponentInChildren <Allomancer>(); charController = GetComponent <CharacterController>(); head = GetComponent <XRRig>().cameraGameObject; }