Last change
on this file was 1114, checked in by iritscen, 5 years ago |
Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.
|
File size:
582 bytes
|
Rev | Line | |
---|
[1114] | 1 | namespace Oni.Level
|
---|
| 2 | {
|
---|
| 3 | internal class Corpse
|
---|
| 4 | {
|
---|
| 5 | public bool IsFixed;
|
---|
| 6 | public bool IsUsed;
|
---|
| 7 | public string FileName;
|
---|
| 8 | public string CharacterClass;
|
---|
| 9 | public readonly Matrix[] Transforms = new Matrix[19];
|
---|
| 10 | public BoundingBox BoundingBox;
|
---|
| 11 |
|
---|
| 12 | public int Order
|
---|
| 13 | {
|
---|
| 14 | get
|
---|
| 15 | {
|
---|
| 16 | if (IsFixed)
|
---|
| 17 | return 1;
|
---|
| 18 | else if (IsUsed)
|
---|
| 19 | return 2;
|
---|
| 20 | else
|
---|
| 21 | return 3;
|
---|
| 22 | }
|
---|
| 23 | }
|
---|
| 24 | }
|
---|
| 25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.