mirror of
https://gitgud.io/ll.mirrors/sizedapparel.git
synced 2024-08-15 00:43:40 +00:00
Mirror of 1.4.22 from Lovers Lab
This commit is contained in:
parent
5d0da3bc88
commit
b501ddfb0f
1119 changed files with 12505 additions and 2543 deletions
30
1.3/source/SizedApparel/SizedApparelTexturePointDef.cs
Normal file
30
1.3/source/SizedApparel/SizedApparelTexturePointDef.cs
Normal file
|
@ -0,0 +1,30 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Verse;
|
||||
|
||||
namespace SizedApparel
|
||||
{
|
||||
//Consider Graphic and Graphic_Multi(Graphic with Facing such as south)
|
||||
public class SizedApparelTexturePointDef : Def
|
||||
{
|
||||
//Path must be texture file name with path
|
||||
//Path example: "Things/Pawn/Humanlike/Bodies/Naked_Female_BaseBody"
|
||||
//Facing Text such as "_south" must not be included.
|
||||
//Use "/" instead of "\"
|
||||
|
||||
public string Path;
|
||||
|
||||
public List<BodyPartPoint> SouthBodyPartPoints = new List<BodyPartPoint>();
|
||||
public List<BodyPartPoint> NorthBodyPartPoints = new List<BodyPartPoint>();
|
||||
public List<BodyPartPoint> EastBodyPartPoints = new List<BodyPartPoint>();
|
||||
|
||||
//can be null. then use EastBodyPartPoints
|
||||
public List<BodyPartPoint> WestBodyPartPoints = new List<BodyPartPoint>();
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue