◆ ETileVisibility
Enumerator |
---|
Hidden | |
Revealed | |
◆ LevelColumn()
FischlWorks_FogWar.Shadowcaster.LevelColumn.LevelColumn |
( |
IEnumerable< ETileVisibility > |
visibilityTiles | ) |
|
|
inline |
123 {
124 levelColumn = new List<ETileVisibility>(visibilityTiles);
125 }
◆ Count()
int FischlWorks_FogWar.Shadowcaster.LevelColumn.Count |
( |
| ) |
|
|
inline |
143 {
144 return levelColumn.Count;
145 }
◆ Reset()
void FischlWorks_FogWar.Shadowcaster.LevelColumn.Reset |
( |
| ) |
|
|
inline |
◆ this[int index]
ETileVisibility FischlWorks_FogWar.Shadowcaster.LevelColumn.this[int index] |
|
getset |
148 {
149 get {
150 if (index >= 0 && index < levelColumn.Count)
151 {
152 return levelColumn[index];
153 }
154 else
155 {
156 Debug.LogErrorFormat("index given in y axis is out of range");
157
159 }
160 }
161 set {
162 if (index >= 0 && index < levelColumn.Count)
163 {
164 levelColumn[index] = value;
165 }
166 else
167 {
168 Debug.LogErrorFormat("index given in y axis is out of range");
169
170 return;
171 }
172 }
173 }
The documentation for this class was generated from the following file: