Table of Contents
Extensions for PetModels
public static class PetModelBehaviorExt
Inheritance System.Object PetModelBehaviorExt
Add a Behavior to this model
public static void AddBehavior<T>(this PetModel model, T behavior)
where T : PetBehaviorModel;
T
model
Il2CppAssets.Scripts.Models.Towers.Pets.PetModel
behavior
T
Return the first Behavior of type T, or null if there isn't one
public static T GetBehavior<T>(this PetModel model)
where T : Model;
T
The Behavior you want
model
Il2CppAssets.Scripts.Models.Towers.Pets.PetModel
Return all Behaviors of type T
public static System.Collections.Generic.List<T> GetBehaviors<T>(this PetModel model)
where T : Model;
T
The Behavior you want
model
Il2CppAssets.Scripts.Models.Towers.Pets.PetModel
System.Collections.Generic.List<T>
Check if this has a specific Behavior
public static bool HasBehavior<T>(this PetModel model)
where T : Model;
T
The Behavior you're checking for
model
Il2CppAssets.Scripts.Models.Towers.Pets.PetModel
Removes a specific behavior from a tower
public static void RemoveBehavior<T>(this PetModel model, T behavior)
where T : Model;
T
model
Il2CppAssets.Scripts.Models.Towers.Pets.PetModel
behavior
T
Remove the first Behavior of Type T
public static void RemoveBehavior<T>(this PetModel model)
where T : Model;
T
The Behavior you want to remove
model
Il2CppAssets.Scripts.Models.Towers.Pets.PetModel
Remove all Behaviors of type T
public static void RemoveBehaviors(this PetModel model);
model
Il2CppAssets.Scripts.Models.Towers.Pets.PetModel
Remove all Behaviors of type T
public static void RemoveBehaviors<T>(this PetModel model)
where T : Model;
T