ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/OniSplit/Level/Later/PhyObject.cs
Revision: 1114
Committed: Wed Jan 22 14:08:57 2020 UTC (5 years, 8 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.

File Contents

# 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 }