コード例 #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;
        }
コード例 #2
0
ファイル: ClothingUtil.cs プロジェクト: callumlawson/Sellout
 public static ClothingBottom GetClothingAsset(ClothingBottomType bottom)
 {
     return(AssetLoader.LoadScriptableObjectAsset <ClothingBottom>(bottom.ToString()));
 }
コード例 #3
0
ファイル: ClothingState.cs プロジェクト: callumlawson/Sellout
 public ClothingState(ClothingTopType top, ClothingBottomType bottom)
 {
     this.top    = top;
     this.bottom = bottom;
 }