source: OniSplit/Level/Later/PhyObject.cs@ 1143

Last change on this file since 1143 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: 553 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace 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}
Note: See TracBrowser for help on using the repository browser.