Class Skinable_Multiple
- Namespace
- CustomKnight
- Assembly
- CustomKnight.dll
The abstract Class that represents a Skinable that uses a multiple Materials
public abstract class Skinable_Multiple : Skinable- Inheritance
- 
      
      
      Skinable_Multiple
- Derived
- Inherited Members
Constructors
Skinable_Multiple(string)
Ctor
public Skinable_Multiple(string name)Parameters
- namestring
- Name of your skinable 
Properties
materials
List of materials that we must skin
public List<Material> materials { get; set; }Property Value
- List<Material>
Methods
GetMaterials()
An abstract Method that returns the List{Material} for this Skinable
public abstract List<Material> GetMaterials()Returns
- List<Material>
Prepare()
A Method that is called to so that any preparations for the Skinable can be done. for example, saving the material that will be used.
public override void Prepare()