Exemplo n.º 1
0
        public NpcTemplate(NPCName name, SpeciesType species, JobType job, FaceType face, HairType hair, ClothingTopType top, ClothingBottomType bottom) : this()
        {
            Name    = name;
            Species = species;
            Job     = job;

            Top    = top;
            Bottom = bottom;
            Hair   = hair;
            Face   = face;
        }
Exemplo n.º 2
0
 public static ClothingTop GetClothingAsset(ClothingTopType top)
 {
     return(AssetLoader.LoadScriptableObjectAsset <ClothingTop>(top.ToString()));
 }
Exemplo n.º 3
0
 public ClothingState(ClothingTopType top, ClothingBottomType bottom)
 {
     this.top    = top;
     this.bottom = bottom;
 }