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