Definition at line 7 of file CardInspector.cs.
◆ _SpawnList()
IEnumerable< string > CardInspector._SpawnList |
( |
| ) |
|
|
inlineprotected |
◆ _TapeList()
IEnumerable< string > CardInspector._TapeList |
( |
| ) |
|
|
inlineprivate |
◆ Awake()
void CardInspector.Awake |
( |
| ) |
|
|
inlineprivate |
◆ GetInheritedClasses()
IEnumerable< Type > CardInspector.GetInheritedClasses |
( |
Type |
MyType, |
|
|
Type |
exclude = null |
|
) |
| |
|
inlineprivate |
Definition at line 130 of file CardInspector.cs.
131 {
132 return from TheType in Assembly.GetAssembly(MyType).GetTypes()
133 where TheType.IsClass && TheType.IsSubclassOf(MyType) && (exclude == null || !TheType.IsSubclassOf(exclude))
134 select TheType;
135 }
Referenced by Traits().
◆ OnValidate()
void CardInspector.OnValidate |
( |
| ) |
|
|
inlineprivate |
◆ SetCard()
void CardInspector.SetCard |
( |
Card |
c, |
|
|
bool |
select = true |
|
) |
| |
|
inline |
◆ Traits()
IEnumerable< string > CardInspector.Traits |
( |
| ) |
|
|
inlineprivate |
◆ card
◆ Instance
◆ tags
◆ traitVals
string CardInspector.traitVals |
◆ BGM
Definition at line 59 of file CardInspector.cs.
60 {
61 get
62 {
64 {
65 return "0";
66 }
68 if (!(bGMData == null))
69 {
70 return bGMData.name;
71 }
72 return "0";
73 }
74 set
75 {
77 {
78 card.refVal = value.Split(' ')[0].ToInt();
79 }
80 }
81 }
◆ idEditor
string CardInspector.idEditor |
|
getset |
Definition at line 29 of file CardInspector.cs.
30 {
31 get
32 {
34 }
35 set
36 {
38 {
39 card.c_idEditor = value;
40 }
41 }
42 }
◆ Info
string CardInspector.Info |
|
get |
Definition at line 17 of file CardInspector.cs.
18 {
19 get
20 {
22 {
23 return card.id + "(" + card.NameSimple + ")";
24 }
25 return "";
26 }
27 }
◆ IsTape
bool CardInspector.IsTape |
|
get |
◆ spawnList
string CardInspector.spawnList |
|
getset |
Definition at line 85 of file CardInspector.cs.
86 {
87 get
88 {
90 {
91 return "-";
92 }
94 if (row != null)
95 {
97 }
98 return "-";
99 }
100 set
101 {
103 {
104 card.c_idRefCard = value;
105 }
106 }
107 }
◆ trait
string CardInspector.trait |
|
getset |
Definition at line 44 of file CardInspector.cs.
45 {
46 get
47 {
49 }
50 set
51 {
53 {
54 card.c_idTrait = value;
55 }
56 }
57 }
The documentation for this class was generated from the following file: