class PrefabVariable
A prefab variable definition
public string Id { get; set; }
A unique id for this variable. This is what it will be referred to in code.
public string Title { get; set; }
A user friendly title for this variable
public string Description { get; set; }
A user friendly description for this variable
public string Group { get; set; }
An optional group for this variable to belong to
public int Order { get; set; }
Lower numbers appear first
public List<PrefabVariable.PrefabVariableTarget> Targets { get; set; }
Component variables that are being targetted
public void AddTarget( Guid id, string propertyName )
Add a target property
public Type GetType( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.
public PrefabVariable( )
😔 No documentation found.