From 6ca3543de033f08f1fcc8751d6584420145c66ce Mon Sep 17 00:00:00 2001 From: Lubos Lenco Date: Sat, 7 May 2016 13:22:51 +0200 Subject: [PATCH] Clean up. --- Sources/cycles/trait/Animation.hx | 2 +- Sources/cycles/trait/FirstPersonController.hx | 2 +- Sources/cycles/trait/NodeExecutor.hx | 2 +- Sources/cycles/trait/PathTracer.hx | 2 +- Sources/cycles/trait/PhysicsDrag.hx | 2 +- Sources/cycles/trait/PhysicsWorld.hx | 2 +- Sources/cycles/trait/RigidBody.hx | 2 +- Sources/cycles/trait/SceneInstance.hx | 2 +- Sources/cycles/trait/VehicleBody.hx | 2 +- Sources/cycles/trait/VehicleWheel.hx | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Sources/cycles/trait/Animation.hx b/Sources/cycles/trait/Animation.hx index 73ae80bc..02f2775c 100644 --- a/Sources/cycles/trait/Animation.hx +++ b/Sources/cycles/trait/Animation.hx @@ -1,6 +1,6 @@ package cycles.trait; -import lue.trait.Trait; +import lue.Trait; import lue.Eg; import lue.resource.Resource; import lue.node.ModelNode; diff --git a/Sources/cycles/trait/FirstPersonController.hx b/Sources/cycles/trait/FirstPersonController.hx index 8942844f..daddd840 100644 --- a/Sources/cycles/trait/FirstPersonController.hx +++ b/Sources/cycles/trait/FirstPersonController.hx @@ -2,7 +2,7 @@ package cycles.trait; import lue.math.Mat4; import lue.math.Vec4; -import lue.trait.Trait; +import lue.Trait; import lue.sys.Input; import lue.sys.Time; import lue.node.Transform; diff --git a/Sources/cycles/trait/NodeExecutor.hx b/Sources/cycles/trait/NodeExecutor.hx index 59de302a..9b359d3e 100644 --- a/Sources/cycles/trait/NodeExecutor.hx +++ b/Sources/cycles/trait/NodeExecutor.hx @@ -1,6 +1,6 @@ package cycles.trait; -import lue.trait.Trait; +import lue.Trait; class NodeExecutor extends Trait { diff --git a/Sources/cycles/trait/PathTracer.hx b/Sources/cycles/trait/PathTracer.hx index 1e502521..9708bc46 100644 --- a/Sources/cycles/trait/PathTracer.hx +++ b/Sources/cycles/trait/PathTracer.hx @@ -3,7 +3,7 @@ package cycles.trait; import lue.Eg; import lue.math.Mat4; import lue.math.Vec4; -import lue.trait.Trait; +import lue.Trait; import lue.node.Transform; import lue.node.RootNode; import lue.resource.MaterialResource.MaterialContext; diff --git a/Sources/cycles/trait/PhysicsDrag.hx b/Sources/cycles/trait/PhysicsDrag.hx index 530e5d40..c8764ed6 100644 --- a/Sources/cycles/trait/PhysicsDrag.hx +++ b/Sources/cycles/trait/PhysicsDrag.hx @@ -1,6 +1,6 @@ package cycles.trait; -import lue.trait.Trait; +import lue.Trait; import lue.sys.Input; #if WITH_PHYSICS import haxebullet.Bullet; diff --git a/Sources/cycles/trait/PhysicsWorld.hx b/Sources/cycles/trait/PhysicsWorld.hx index 530e0b2f..99d6d2dc 100644 --- a/Sources/cycles/trait/PhysicsWorld.hx +++ b/Sources/cycles/trait/PhysicsWorld.hx @@ -3,7 +3,7 @@ package cycles.trait; #if WITH_PHYSICS import haxebullet.Bullet; #end -import lue.trait.Trait; +import lue.Trait; import lue.sys.Time; import lue.math.Vec4; import lue.math.RayCaster; diff --git a/Sources/cycles/trait/RigidBody.hx b/Sources/cycles/trait/RigidBody.hx index ef6c6f51..934bf506 100644 --- a/Sources/cycles/trait/RigidBody.hx +++ b/Sources/cycles/trait/RigidBody.hx @@ -3,7 +3,7 @@ package cycles.trait; #if WITH_PHYSICS import haxebullet.Bullet; #end -import lue.trait.Trait; +import lue.Trait; import lue.sys.Time; import lue.math.Vec4; import lue.node.Transform; diff --git a/Sources/cycles/trait/SceneInstance.hx b/Sources/cycles/trait/SceneInstance.hx index 3ef9c1c0..9dc5dc60 100644 --- a/Sources/cycles/trait/SceneInstance.hx +++ b/Sources/cycles/trait/SceneInstance.hx @@ -1,6 +1,6 @@ package cycles.trait; -import lue.trait.Trait; +import lue.Trait; import lue.Eg; class SceneInstance extends Trait { diff --git a/Sources/cycles/trait/VehicleBody.hx b/Sources/cycles/trait/VehicleBody.hx index 5baf7904..6d084516 100644 --- a/Sources/cycles/trait/VehicleBody.hx +++ b/Sources/cycles/trait/VehicleBody.hx @@ -1,7 +1,7 @@ package cycles.trait; import lue.Eg; -import lue.trait.Trait; +import lue.Trait; import lue.node.RootNode; import lue.node.CameraNode; import lue.node.Transform; diff --git a/Sources/cycles/trait/VehicleWheel.hx b/Sources/cycles/trait/VehicleWheel.hx index 21233bf7..310b1391 100644 --- a/Sources/cycles/trait/VehicleWheel.hx +++ b/Sources/cycles/trait/VehicleWheel.hx @@ -1,6 +1,6 @@ package cycles.trait; -import lue.trait.Trait; +import lue.Trait; #if WITH_PHYSICS import haxebullet.Bullet; #end