| Revision: | 1114 |
| Committed: | Wed Jan 22 14:08:57 2020 UTC (5 years, 9 months ago) by iritscen |
| File size: | 553 byte(s) |
| Log Message: | Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years. |
| # | Content |
|---|---|
| 1 | using System; |
| 2 | using System.Collections.Generic; |
| 3 | using System.Text; |
| 4 | |
| 5 | namespace Oni.Level |
| 6 | { |
| 7 | internal class PhyObject |
| 8 | { |
| 9 | public PhyObjectFlags Flags; |
| 10 | public PhyType PhysicsType; |
| 11 | public int ScriptId; |
| 12 | public List<EnvParticle> Particles; |
| 13 | |
| 14 | public Vector3 Position; |
| 15 | public Quaternion Rotation; |
| 16 | public float Scale; |
| 17 | public Matrix Matrix; |
| 18 | |
| 19 | public int DoorId; |
| 20 | public int DoorQuad; |
| 21 | |
| 22 | public string Name; |
| 23 | public string FileName; |
| 24 | } |
| 25 | } |