source: OniSplit/Physics/ObjectDaeNodeProperties.cs@ 1157

Last change on this file since 1157 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: 448 bytes
Line 
1using System.Collections.Generic;
2
3namespace Oni.Physics
4{
5 using Akira;
6
7 internal class ObjectDaeNodeProperties : AkiraDaeNodeProperties
8 {
9 public ObjectSetupFlags ObjectFlags;
10 public ObjectPhysicsType PhysicsType;
11 public readonly List<ObjectAnimationClip> Animations = new List<ObjectAnimationClip>();
12 public readonly List<ObjectParticle> Particles = new List<ObjectParticle>();
13 }
14}
Note: See TracBrowser for help on using the repository browser.