Beispiel #1
0
 public ColorLink(Color col, Utils.RenderSet Set, int SetID, bool UseColors, int MaskIndex = 0)
 {
     this._Color    = col;
     this.MaskIndex = MaskIndex;
     this.UseColors = UseColors;
     AddRenderTuple(Set, SetID);
 }
Beispiel #2
0
 public RendererTuple(Utils.RenderSet Set, int SetID)
 {
     this.SetID     = SetID;
     this.RenderSet = Set;
 }
Beispiel #3
0
 public void AddRenderTuple(Utils.RenderSet Set, int SetID)
 {
     Tuples.Add(new RendererTuple(Set, SetID));
 }
Beispiel #4
0
 public TextureLink(ModularTextureData Texture, ModularTextureArray Array, ModularPlacableObject ModularPlacable, Utils.RenderSet Set, int SetID)
 {
     this._Texture        = Texture;
     this._Array          = Array;
     this.ModularPlacable = ModularPlacable;
     AddRenderTuple(Set, SetID);
 }