| Revision: | 1114 | 
| Committed: | Wed Jan 22 14:08:57 2020 UTC (5 years, 9 months ago) by iritscen | 
| File size: | 448 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.Collections.Generic; | 
| 2 | |
| 3 | namespace 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 | } |