From e0074a4c073a109553bc8d5259b830a19b362090 Mon Sep 17 00:00:00 2001 From: Joseph Cloutier Date: Sun, 1 Oct 2017 16:14:09 -0400 Subject: [PATCH] chmod -x I double-clicked on one of these expecting to open it in a text editor, but instead it created a bunch of files in the current directory. The "x" access permission makes Linux treat it as a bash script, and I guess it went through the Haxe file and executed the lines that were valid bash. --- away3d/Away3D.hx | 0 away3d/animators/AnimationSetBase.hx | 0 away3d/animators/AnimatorBase.hx | 0 away3d/animators/IAnimationSet.hx | 0 away3d/animators/IAnimator.hx | 0 away3d/animators/ParticleAnimationSet.hx | 0 away3d/animators/ParticleAnimator.hx | 0 away3d/animators/PathAnimator.hx | 0 away3d/animators/SkeletonAnimationSet.hx | 0 away3d/animators/SkeletonAnimator.hx | 0 away3d/animators/SpriteSheetAnimationSet.hx | 0 away3d/animators/SpriteSheetAnimator.hx | 0 away3d/animators/UVAnimationSet.hx | 0 away3d/animators/UVAnimator.hx | 0 away3d/animators/VertexAnimationSet.hx | 0 away3d/animators/VertexAnimator.hx | 0 away3d/animators/data/AnimationRegisterCache.hx | 0 away3d/animators/data/AnimationSubGeometry.hx | 0 away3d/animators/data/ColorSegmentPoint.hx | 0 away3d/animators/data/JointPose.hx | 0 away3d/animators/data/ParticleAnimationData.hx | 0 away3d/animators/data/ParticleProperties.hx | 0 away3d/animators/data/ParticlePropertiesMode.hx | 0 away3d/animators/data/Skeleton.hx | 0 away3d/animators/data/SkeletonJoint.hx | 0 away3d/animators/data/SkeletonPose.hx | 0 away3d/animators/data/SpriteSheetAnimationFrame.hx | 0 away3d/animators/data/UVAnimationFrame.hx | 0 away3d/animators/data/VertexAnimationMode.hx | 0 away3d/animators/nodes/AnimationClipNodeBase.hx | 0 away3d/animators/nodes/AnimationNodeBase.hx | 0 away3d/animators/nodes/ISpriteSheetAnimationNode.hx | 0 away3d/animators/nodes/ParticleAccelerationNode.hx | 0 away3d/animators/nodes/ParticleBezierCurveNode.hx | 0 away3d/animators/nodes/ParticleBillboardNode.hx | 0 away3d/animators/nodes/ParticleColorNode.hx | 0 away3d/animators/nodes/ParticleFollowNode.hx | 0 away3d/animators/nodes/ParticleInitialColorNode.hx | 0 away3d/animators/nodes/ParticleNodeBase.hx | 0 away3d/animators/nodes/ParticleOrbitNode.hx | 0 away3d/animators/nodes/ParticleOscillatorNode.hx | 0 away3d/animators/nodes/ParticlePositionNode.hx | 0 away3d/animators/nodes/ParticleRotateToHeadingNode.hx | 0 away3d/animators/nodes/ParticleRotateToPositionNode.hx | 0 away3d/animators/nodes/ParticleRotationalVelocityNode.hx | 0 away3d/animators/nodes/ParticleScaleNode.hx | 0 away3d/animators/nodes/ParticleSegmentedColorNode.hx | 0 away3d/animators/nodes/ParticleSegmentedScaleNode.hx | 0 away3d/animators/nodes/ParticleSpriteSheetNode.hx | 0 away3d/animators/nodes/ParticleTimeNode.hx | 0 away3d/animators/nodes/ParticleUVNode.hx | 0 away3d/animators/nodes/ParticleVelocityNode.hx | 0 away3d/animators/nodes/SkeletonBinaryLERPNode.hx | 0 away3d/animators/nodes/SkeletonClipNode.hx | 0 away3d/animators/nodes/SkeletonDifferenceNode.hx | 0 away3d/animators/nodes/SkeletonDirectionalNode.hx | 0 away3d/animators/nodes/SkeletonNaryLERPNode.hx | 0 away3d/animators/nodes/SpriteSheetClipNode.hx | 0 away3d/animators/nodes/UVClipNode.hx | 0 away3d/animators/nodes/VertexClipNode.hx | 0 away3d/animators/states/AnimationClipState.hx | 0 away3d/animators/states/AnimationStateBase.hx | 0 away3d/animators/states/IAnimationState.hx | 0 away3d/animators/states/ISkeletonAnimationState.hx | 0 away3d/animators/states/ISpriteSheetAnimationState.hx | 0 away3d/animators/states/IUVAnimationState.hx | 0 away3d/animators/states/IVertexAnimationState.hx | 0 away3d/animators/states/ParticleAccelerationState.hx | 0 away3d/animators/states/ParticleBezierCurveState.hx | 0 away3d/animators/states/ParticleBillboardState.hx | 0 away3d/animators/states/ParticleColorState.hx | 0 away3d/animators/states/ParticleFollowState.hx | 0 away3d/animators/states/ParticleInitialColorState.hx | 0 away3d/animators/states/ParticleOrbitState.hx | 0 away3d/animators/states/ParticleOscillatorState.hx | 0 away3d/animators/states/ParticlePositionState.hx | 0 away3d/animators/states/ParticleRotateToHeadingState.hx | 0 away3d/animators/states/ParticleRotateToPositionState.hx | 0 away3d/animators/states/ParticleRotationalVelocityState.hx | 0 away3d/animators/states/ParticleScaleState.hx | 0 away3d/animators/states/ParticleSegmentedColorState.hx | 0 away3d/animators/states/ParticleSegmentedScaleState.hx | 0 away3d/animators/states/ParticleSpriteSheetState.hx | 0 away3d/animators/states/ParticleStateBase.hx | 0 away3d/animators/states/ParticleTimeState.hx | 0 away3d/animators/states/ParticleUVState.hx | 0 away3d/animators/states/ParticleVelocityState.hx | 0 away3d/animators/states/SkeletonBinaryLERPState.hx | 0 away3d/animators/states/SkeletonClipState.hx | 0 away3d/animators/states/SkeletonDifferenceState.hx | 0 away3d/animators/states/SkeletonDirectionalState.hx | 0 away3d/animators/states/SkeletonNaryLERPState.hx | 0 away3d/animators/states/SpriteSheetAnimationState.hx | 0 away3d/animators/states/UVClipState.hx | 0 away3d/animators/states/VertexClipState.hx | 0 away3d/animators/transitions/CrossfadeTransition.hx | 0 away3d/animators/transitions/CrossfadeTransitionNode.hx | 0 away3d/animators/transitions/CrossfadeTransitionState.hx | 0 away3d/animators/transitions/IAnimationTransition.hx | 0 away3d/animators/utils/SkeletonUtils.hx | 0 away3d/audio/Sound3D.hx | 0 away3d/audio/SoundTransform3D.hx | 0 away3d/audio/drivers/AbstractSound3DDriver.hx | 0 away3d/audio/drivers/ISound3DDriver.hx | 0 away3d/audio/drivers/SimplePanVolumeDriver.hx | 0 away3d/bounds/AxisAlignedBoundingBox.hx | 0 away3d/bounds/BoundingSphere.hx | 0 away3d/bounds/BoundingVolumeBase.hx | 0 away3d/bounds/NullBounds.hx | 0 away3d/cameras/Camera3D.hx | 0 away3d/cameras/lenses/FreeMatrixLens.hx | 0 away3d/cameras/lenses/LensBase.hx | 0 away3d/cameras/lenses/ObliqueNearPlaneLens.hx | 0 away3d/cameras/lenses/OrthographicLens.hx | 0 away3d/cameras/lenses/OrthographicOffCenterLens.hx | 0 away3d/cameras/lenses/PerspectiveLens.hx | 0 away3d/cameras/lenses/PerspectiveOffCenterLens.hx | 0 away3d/containers/ObjectContainer3D.hx | 0 away3d/containers/Scene3D.hx | 0 away3d/containers/View3D.hx | 0 away3d/controllers/ControllerBase.hx | 0 away3d/controllers/FirstPersonController.hx | 0 away3d/controllers/FollowController.hx | 0 away3d/controllers/HoverController.hx | 0 away3d/controllers/LookAtController.hx | 0 away3d/controllers/SpringController.hx | 0 away3d/core/base/CompactSubGeometry.hx | 0 away3d/core/base/Geometry.hx | 0 away3d/core/base/IMaterialOwner.hx | 0 away3d/core/base/IRenderable.hx | 0 away3d/core/base/ISubGeometry.hx | 0 away3d/core/base/Object3D.hx | 0 away3d/core/base/ParticleGeometry.hx | 0 away3d/core/base/SkinnedSubGeometry.hx | 0 away3d/core/base/SubGeometry.hx | 0 away3d/core/base/SubGeometryBase.hx | 0 away3d/core/base/SubMesh.hx | 0 away3d/core/base/data/Face.hx | 0 away3d/core/base/data/ParticleData.hx | 0 away3d/core/base/data/UV.hx | 0 away3d/core/base/data/Vertex.hx | 0 away3d/core/data/EntityListItem.hx | 0 away3d/core/data/EntityListItemPool.hx | 0 away3d/core/data/RenderableListItem.hx | 0 away3d/core/data/RenderableListItemPool.hx | 0 away3d/core/managers/AGALProgram3DCache.hx | 0 away3d/core/managers/Mouse3DManager.hx | 0 away3d/core/managers/RTTBufferManager.hx | 0 away3d/core/managers/Stage3DManager.hx | 0 away3d/core/managers/Stage3DProxy.hx | 0 away3d/core/managers/Touch3DManager.hx | 0 away3d/core/math/MathConsts.hx | 0 away3d/core/math/Matrix3DUtils.hx | 0 away3d/core/math/Plane3D.hx | 0 away3d/core/math/PlaneClassification.hx | 0 away3d/core/math/PoissonLookup.hx | 0 away3d/core/math/Quaternion.hx | 0 away3d/core/math/Vector3DUtils.hx | 0 away3d/core/partition/CameraNode.hx | 0 away3d/core/partition/DirectionalLightNode.hx | 0 away3d/core/partition/DynamicGrid.hx | 0 away3d/core/partition/EntityNode.hx | 0 away3d/core/partition/InvertedOctreeNode.hx | 0 away3d/core/partition/LightNode.hx | 0 away3d/core/partition/LightProbeNode.hx | 0 away3d/core/partition/MeshNode.hx | 0 away3d/core/partition/NodeBase.hx | 0 away3d/core/partition/NullNode.hx | 0 away3d/core/partition/Octree.hx | 0 away3d/core/partition/OctreeNode.hx | 0 away3d/core/partition/Partition3D.hx | 0 away3d/core/partition/PointLightNode.hx | 0 away3d/core/partition/QuadTree.hx | 0 away3d/core/partition/QuadTreeNode.hx | 0 away3d/core/partition/RenderableNode.hx | 0 away3d/core/partition/SkyBoxNode.hx | 0 away3d/core/partition/ViewVolume.hx | 0 away3d/core/partition/ViewVolumePartition.hx | 0 away3d/core/partition/ViewVolumeRootNode.hx | 0 away3d/core/pick/IPicker.hx | 0 away3d/core/pick/IPickingCollider.hx | 0 away3d/core/pick/PickingColliderBase.hx | 0 away3d/core/pick/PickingColliderType.hx | 0 away3d/core/pick/PickingCollisionVO.hx | 0 away3d/core/pick/PickingType.hx | 0 away3d/core/pick/RaycastPicker.hx | 0 away3d/core/pick/ShaderPicker.hx | 0 away3d/core/render/BackgroundImageRenderer.hx | 0 away3d/core/render/DefaultRenderer.hx | 0 away3d/core/render/DepthRenderer.hx | 0 away3d/core/render/Filter3DRenderer.hx | 0 away3d/core/render/PositionRenderer.hx | 0 away3d/core/render/RendererBase.hx | 0 away3d/core/sort/IEntitySorter.hx | 0 away3d/core/sort/RenderableMergeSort.hx | 0 away3d/core/traverse/EntityCollector.hx | 0 away3d/core/traverse/PartitionTraverser.hx | 0 away3d/core/traverse/RaycastCollector.hx | 0 away3d/core/traverse/SceneIterator.hx | 0 away3d/core/traverse/ShadowCasterCollector.hx | 0 away3d/debug/AwayFPS.hx | 0 away3d/debug/AwayStats.hx | 0 away3d/debug/Debug.hx | 0 away3d/debug/Trident.hx | 0 away3d/debug/WireframeAxesGrid.hx | 0 away3d/debug/data/TridentLines.hx | 0 away3d/entities/Entity.hx | 0 away3d/entities/Mesh.hx | 0 away3d/entities/SegmentSet.hx | 0 away3d/entities/Sprite3D.hx | 0 away3d/entities/TextureProjector.hx | 0 away3d/errors/AbstractMethodError.hx | 0 away3d/errors/AnimationSetError.hx | 0 away3d/errors/CastError.hx | 0 away3d/errors/DeprecationError.hx | 0 away3d/errors/InvalidTextureError.hx | 0 away3d/events/AnimationStateEvent.hx | 0 away3d/events/AnimatorEvent.hx | 0 away3d/events/Asset3DEvent.hx | 0 away3d/events/CameraEvent.hx | 0 away3d/events/GeometryEvent.hx | 0 away3d/events/LensEvent.hx | 0 away3d/events/LightEvent.hx | 0 away3d/events/LoaderEvent.hx | 0 away3d/events/MouseEvent3D.hx | 0 away3d/events/Object3DEvent.hx | 0 away3d/events/ParserEvent.hx | 0 away3d/events/PathEvent.hx | 0 away3d/events/Scene3DEvent.hx | 0 away3d/events/ShadingMethodEvent.hx | 0 away3d/events/Stage3DEvent.hx | 0 away3d/events/TouchEvent3D.hx | 0 away3d/extrusions/DelaunayMesh.hx | 0 away3d/extrusions/Elevation.hx | 0 away3d/extrusions/LatheExtrude.hx | 0 away3d/extrusions/LinearExtrude.hx | 0 away3d/extrusions/PathDuplicator.hx | 0 away3d/extrusions/PathExtrude.hx | 0 away3d/extrusions/SkinExtrude.hx | 0 away3d/extrusions/data/FourPoints.hx | 0 away3d/extrusions/data/Line.hx | 0 away3d/extrusions/data/RenderSide.hx | 0 away3d/extrusions/data/SubGeometryList.hx | 0 away3d/filters/BloomFilter3D.hx | 0 away3d/filters/BlurFilter3D.hx | 0 away3d/filters/DepthOfFieldFilter3D.hx | 0 away3d/filters/Filter3DBase.hx | 0 away3d/filters/HBlurFilter3D.hx | 0 away3d/filters/HDepthOfFieldFilter3D.hx | 0 away3d/filters/HueSaturationFilter3D.hx | 0 away3d/filters/MotionBlurFilter3D.hx | 0 away3d/filters/RadialBlurFilter3D.hx | 0 away3d/filters/VBlurFilter3D.hx | 0 away3d/filters/VDepthOfFieldFilter3D.hx | 0 away3d/filters/tasks/Filter3DBloomCompositeTask.hx | 0 away3d/filters/tasks/Filter3DBrightPassTask.hx | 0 away3d/filters/tasks/Filter3DCompositeTask.hx | 0 away3d/filters/tasks/Filter3DDoubleBufferCopyTask.hx | 0 away3d/filters/tasks/Filter3DHBlurTask.hx | 0 away3d/filters/tasks/Filter3DHDepthOfFFieldTask.hx | 0 away3d/filters/tasks/Filter3DHueSaturationTask.hx | 0 away3d/filters/tasks/Filter3DRadialBlurTask.hx | 0 away3d/filters/tasks/Filter3DTaskBase.hx | 0 away3d/filters/tasks/Filter3DVBlurTask.hx | 0 away3d/filters/tasks/Filter3DVDepthOfFFieldTask.hx | 0 away3d/filters/tasks/Filter3DXFadeCompositeTask.hx | 0 away3d/library/Asset3DLibrary.hx | 0 away3d/library/Asset3DLibraryBundle.hx | 0 away3d/library/assets/Asset3DType.hx | 0 away3d/library/assets/BitmapDataAsset.hx | 0 away3d/library/assets/IAsset.hx | 0 away3d/library/assets/NamedAssetBase.hx | 0 away3d/library/naming/ConflictPrecedence.hx | 0 away3d/library/naming/ConflictStrategy.hx | 0 away3d/library/naming/ConflictStrategyBase.hx | 0 away3d/library/naming/ErrorConflictStrategy.hx | 0 away3d/library/naming/IgnoreConflictStrategy.hx | 0 away3d/library/naming/NumSuffixConflictStrategy.hx | 0 away3d/library/utils/Asset3DLibraryIterator.hx | 0 away3d/library/utils/IDUtil.hx | 0 away3d/lights/DirectionalLight.hx | 0 away3d/lights/LightBase.hx | 0 away3d/lights/LightProbe.hx | 0 away3d/lights/PointLight.hx | 0 away3d/lights/shadowmaps/CascadeShadowMapper.hx | 0 away3d/lights/shadowmaps/CubeMapShadowMapper.hx | 0 away3d/lights/shadowmaps/DirectionalShadowMapper.hx | 0 away3d/lights/shadowmaps/NearDirectionalShadowMapper.hx | 0 away3d/lights/shadowmaps/ShadowMapperBase.hx | 0 away3d/loaders/AssetLoader.hx | 0 away3d/loaders/Loader3D.hx | 0 away3d/loaders/misc/AssetLoaderContext.hx | 0 away3d/loaders/misc/AssetLoaderToken.hx | 0 away3d/loaders/misc/ResourceDependency.hx | 0 away3d/loaders/misc/SingleFileLoader.hx | 0 away3d/loaders/parsers/AC3DParser.hx | 0 away3d/loaders/parsers/AWD1Parser.hx | 0 away3d/loaders/parsers/AWD2Parser.hx | 0 away3d/loaders/parsers/AWDParser.hx | 0 away3d/loaders/parsers/DAEParser.hx | 0 away3d/loaders/parsers/DXFParser.hx | 0 away3d/loaders/parsers/ImageParser.hx | 0 away3d/loaders/parsers/MD2Parser.hx | 0 away3d/loaders/parsers/MD5AnimParser.hx | 0 away3d/loaders/parsers/MD5MeshParser.hx | 0 away3d/loaders/parsers/Max3DSParser.hx | 0 away3d/loaders/parsers/OBJParser.hx | 0 away3d/loaders/parsers/ParserBase.hx | 0 away3d/loaders/parsers/ParserDataFormat.hx | 0 away3d/loaders/parsers/Parsers.hx | 0 away3d/loaders/parsers/utils/ParserUtil.hx | 0 away3d/materials/ColorMaterial.hx | 0 away3d/materials/ColorMultiPassMaterial.hx | 0 away3d/materials/LightSources.hx | 0 away3d/materials/MaterialBase.hx | 0 away3d/materials/MultiPassMaterialBase.hx | 0 away3d/materials/OcclusionMaterial.hx | 0 away3d/materials/SegmentMaterial.hx | 0 away3d/materials/SinglePassMaterialBase.hx | 0 away3d/materials/SkyBoxMaterial.hx | 0 away3d/materials/SpriteSheetMaterial.hx | 0 away3d/materials/TextureMaterial.hx | 0 away3d/materials/TextureMultiPassMaterial.hx | 0 away3d/materials/compilation/LightingShaderCompiler.hx | 0 away3d/materials/compilation/MethodDependencyCounter.hx | 0 away3d/materials/compilation/RegisterPool.hx | 0 away3d/materials/compilation/ShaderCompiler.hx | 0 away3d/materials/compilation/ShaderRegisterCache.hx | 0 away3d/materials/compilation/ShaderRegisterData.hx | 0 away3d/materials/compilation/ShaderRegisterElement.hx | 0 away3d/materials/compilation/SuperShaderCompiler.hx | 0 away3d/materials/lightpickers/LightPickerBase.hx | 0 away3d/materials/lightpickers/StaticLightPicker.hx | 0 away3d/materials/methods/AlphaMaskMethod.hx | 0 away3d/materials/methods/AnisotropicSpecularMethod.hx | 0 away3d/materials/methods/BasicAmbientMethod.hx | 0 away3d/materials/methods/BasicDiffuseMethod.hx | 0 away3d/materials/methods/BasicNormalMethod.hx | 0 away3d/materials/methods/BasicSpecularMethod.hx | 0 away3d/materials/methods/CascadeShadowMapMethod.hx | 0 away3d/materials/methods/CelDiffuseMethod.hx | 0 away3d/materials/methods/CelSpecularMethod.hx | 0 away3d/materials/methods/ColorMatrixMethod.hx | 0 away3d/materials/methods/ColorTransformMethod.hx | 0 away3d/materials/methods/CompositeDiffuseMethod.hx | 0 away3d/materials/methods/CompositeSpecularMethod.hx | 0 away3d/materials/methods/DepthDiffuseMethod.hx | 0 away3d/materials/methods/DitheredShadowMapMethod.hx | 0 away3d/materials/methods/EffectMethodBase.hx | 0 away3d/materials/methods/EnvMapAmbientMethod.hx | 0 away3d/materials/methods/EnvMapMethod.hx | 0 away3d/materials/methods/FilteredShadowMapMethod.hx | 0 away3d/materials/methods/FogMethod.hx | 0 away3d/materials/methods/FresnelEnvMapMethod.hx | 0 away3d/materials/methods/FresnelPlanarReflectionMethod.hx | 0 away3d/materials/methods/FresnelSpecularMethod.hx | 0 away3d/materials/methods/GradientDiffuseMethod.hx | 0 away3d/materials/methods/HardShadowMapMethod.hx | 0 away3d/materials/methods/HeightMapNormalMethod.hx | 0 away3d/materials/methods/LightMapDiffuseMethod.hx | 0 away3d/materials/methods/LightMapMethod.hx | 0 away3d/materials/methods/LightingMethodBase.hx | 0 away3d/materials/methods/MethodVO.hx | 0 away3d/materials/methods/MethodVOSet.hx | 0 away3d/materials/methods/NearShadowMapMethod.hx | 0 away3d/materials/methods/OutlineMethod.hx | 0 away3d/materials/methods/PhongSpecularMethod.hx | 0 away3d/materials/methods/PlanarReflectionMethod.hx | 0 away3d/materials/methods/ProjectiveTextureMethod.hx | 0 away3d/materials/methods/RefractionEnvMapMethod.hx | 0 away3d/materials/methods/RimLightMethod.hx | 0 away3d/materials/methods/ShaderMethodSetup.hx | 0 away3d/materials/methods/ShadingMethodBase.hx | 0 away3d/materials/methods/ShadowMapMethodBase.hx | 0 away3d/materials/methods/SimpleShadowMapMethodBase.hx | 0 away3d/materials/methods/SimpleWaterNormalMethod.hx | 0 away3d/materials/methods/SoftShadowMapMethod.hx | 0 away3d/materials/methods/SubsurfaceScatteringDiffuseMethod.hx | 0 away3d/materials/methods/TerrainDiffuseMethod.hx | 0 away3d/materials/methods/TripleFilteredShadowMapMethod.hx | 0 away3d/materials/methods/WrapDiffuseMethod.hx | 0 away3d/materials/passes/CompiledPass.hx | 0 away3d/materials/passes/DepthMapPass.hx | 0 away3d/materials/passes/DistanceMapPass.hx | 0 away3d/materials/passes/LightingPass.hx | 0 away3d/materials/passes/MaterialPassBase.hx | 0 away3d/materials/passes/OutlinePass.hx | 0 away3d/materials/passes/SegmentPass.hx | 0 away3d/materials/passes/ShadowCasterPass.hx | 0 away3d/materials/passes/SingleObjectDepthPass.hx | 0 away3d/materials/passes/SkyBoxPass.hx | 0 away3d/materials/passes/SuperShaderPass.hx | 0 away3d/materials/utils/DefaultMaterialManager.hx | 0 away3d/materials/utils/IVideoPlayer.hx | 0 away3d/materials/utils/MipmapGenerator.hx | 0 away3d/materials/utils/MultipleMaterials.hx | 0 away3d/materials/utils/SimpleVideoPlayer.hx | 0 away3d/materials/utils/WireframeMapGenerator.hx | 0 away3d/paths/CubicPath.hx | 0 away3d/paths/CubicPathSegment.hx | 0 away3d/paths/IPath.hx | 0 away3d/paths/IPathSegment.hx | 0 away3d/paths/QuadraticPath.hx | 0 away3d/paths/QuadraticPathSegment.hx | 0 away3d/paths/SegmentedPathBase.hx | 0 away3d/primitives/CapsuleGeometry.hx | 0 away3d/primitives/ConeGeometry.hx | 0 away3d/primitives/CubeGeometry.hx | 0 away3d/primitives/CylinderGeometry.hx | 0 away3d/primitives/LineSegment.hx | 0 away3d/primitives/NURBSGeometry.hx | 0 away3d/primitives/PlaneGeometry.hx | 0 away3d/primitives/PrimitiveBase.hx | 0 away3d/primitives/RegularPolygonGeometry.hx | 0 away3d/primitives/SkyBox.hx | 0 away3d/primitives/SphereGeometry.hx | 0 away3d/primitives/TorusGeometry.hx | 0 away3d/primitives/WireframeCube.hx | 0 away3d/primitives/WireframeCylinder.hx | 0 away3d/primitives/WireframePlane.hx | 0 away3d/primitives/WireframePrimitiveBase.hx | 0 away3d/primitives/WireframeRegularPolygon.hx | 0 away3d/primitives/WireframeSphere.hx | 0 away3d/primitives/WireframeTetrahedron.hx | 0 away3d/primitives/data/NURBSVertex.hx | 0 away3d/primitives/data/Segment.hx | 0 away3d/stereo/StereoCamera3D.hx | 0 away3d/stereo/StereoRenderer.hx | 0 away3d/stereo/StereoView3D.hx | 0 away3d/stereo/methods/AnaglyphStereoRenderMethod.hx | 0 away3d/stereo/methods/InterleavedStereoRenderMethod.hx | 0 away3d/stereo/methods/SBSStereoRenderMethod.hx | 0 away3d/stereo/methods/StereoRenderMethodBase.hx | 0 away3d/textures/ATFCubeTexture.hx | 0 away3d/textures/ATFData.hx | 0 away3d/textures/ATFTexture.hx | 0 away3d/textures/Anisotropy.hx | 0 away3d/textures/BitmapCubeTexture.hx | 0 away3d/textures/BitmapTexture.hx | 0 away3d/textures/BitmapTextureCache.hx | 0 away3d/textures/CubeReflectionTexture.hx | 0 away3d/textures/CubeTextureBase.hx | 0 away3d/textures/PlanarReflectionTexture.hx | 0 away3d/textures/RenderCubeTexture.hx | 0 away3d/textures/RenderTexture.hx | 0 away3d/textures/SpecularBitmapTexture.hx | 0 away3d/textures/Texture2DBase.hx | 0 away3d/textures/TextureProxyBase.hx | 0 away3d/textures/VideoTexture.hx | 0 away3d/textures/WebcamTexture.hx | 0 away3d/tools/commands/Align.hx | 0 away3d/tools/commands/Explode.hx | 0 away3d/tools/commands/Merge.hx | 0 away3d/tools/commands/Mirror.hx | 0 away3d/tools/commands/SphereMaker.hx | 0 away3d/tools/commands/Weld.hx | 0 away3d/tools/helpers/FaceHelper.hx | 0 away3d/tools/helpers/LightsHelper.hx | 0 away3d/tools/helpers/MeshDebugger.hx | 0 away3d/tools/helpers/MeshHelper.hx | 0 away3d/tools/helpers/ParticleGeometryHelper.hx | 0 away3d/tools/helpers/SpriteSheetHelper.hx | 0 away3d/tools/helpers/data/MeshDebug.hx | 0 away3d/tools/helpers/data/ParticleGeometryTransform.hx | 0 away3d/tools/serialize/Serialize.hx | 0 away3d/tools/serialize/SerializerBase.hx | 0 away3d/tools/serialize/TraceSerializer.hx | 0 away3d/tools/utils/Bounds.hx | 0 away3d/tools/utils/ColorHitMap.hx | 0 away3d/tools/utils/Drag3D.hx | 0 away3d/tools/utils/GeomUtil.hx | 0 away3d/tools/utils/Grid.hx | 0 away3d/tools/utils/Projector.hx | 0 away3d/tools/utils/Ray.hx | 0 away3d/tools/utils/TextureUtils.hx | 0 away3d/utils/Cast.hx | 0 haxelib.json | 0 include.xml | 0 478 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 away3d/Away3D.hx mode change 100755 => 100644 away3d/animators/AnimationSetBase.hx mode change 100755 => 100644 away3d/animators/AnimatorBase.hx mode change 100755 => 100644 away3d/animators/IAnimationSet.hx mode change 100755 => 100644 away3d/animators/IAnimator.hx mode change 100755 => 100644 away3d/animators/ParticleAnimationSet.hx mode change 100755 => 100644 away3d/animators/ParticleAnimator.hx mode change 100755 => 100644 away3d/animators/PathAnimator.hx mode change 100755 => 100644 away3d/animators/SkeletonAnimationSet.hx mode change 100755 => 100644 away3d/animators/SkeletonAnimator.hx mode change 100755 => 100644 away3d/animators/SpriteSheetAnimationSet.hx mode change 100755 => 100644 away3d/animators/SpriteSheetAnimator.hx mode change 100755 => 100644 away3d/animators/UVAnimationSet.hx mode change 100755 => 100644 away3d/animators/UVAnimator.hx mode change 100755 => 100644 away3d/animators/VertexAnimationSet.hx mode change 100755 => 100644 away3d/animators/VertexAnimator.hx mode change 100755 => 100644 away3d/animators/data/AnimationRegisterCache.hx mode change 100755 => 100644 away3d/animators/data/AnimationSubGeometry.hx mode change 100755 => 100644 away3d/animators/data/ColorSegmentPoint.hx mode change 100755 => 100644 away3d/animators/data/JointPose.hx mode change 100755 => 100644 away3d/animators/data/ParticleAnimationData.hx mode change 100755 => 100644 away3d/animators/data/ParticleProperties.hx mode change 100755 => 100644 away3d/animators/data/ParticlePropertiesMode.hx mode change 100755 => 100644 away3d/animators/data/Skeleton.hx mode change 100755 => 100644 away3d/animators/data/SkeletonJoint.hx mode change 100755 => 100644 away3d/animators/data/SkeletonPose.hx mode change 100755 => 100644 away3d/animators/data/SpriteSheetAnimationFrame.hx mode change 100755 => 100644 away3d/animators/data/UVAnimationFrame.hx mode change 100755 => 100644 away3d/animators/data/VertexAnimationMode.hx mode change 100755 => 100644 away3d/animators/nodes/AnimationClipNodeBase.hx mode change 100755 => 100644 away3d/animators/nodes/AnimationNodeBase.hx mode change 100755 => 100644 away3d/animators/nodes/ISpriteSheetAnimationNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleAccelerationNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleBezierCurveNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleBillboardNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleColorNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleFollowNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleInitialColorNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleNodeBase.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleOrbitNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleOscillatorNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticlePositionNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleRotateToHeadingNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleRotateToPositionNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleRotationalVelocityNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleScaleNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleSegmentedColorNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleSegmentedScaleNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleSpriteSheetNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleTimeNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleUVNode.hx mode change 100755 => 100644 away3d/animators/nodes/ParticleVelocityNode.hx mode change 100755 => 100644 away3d/animators/nodes/SkeletonBinaryLERPNode.hx mode change 100755 => 100644 away3d/animators/nodes/SkeletonClipNode.hx mode change 100755 => 100644 away3d/animators/nodes/SkeletonDifferenceNode.hx mode change 100755 => 100644 away3d/animators/nodes/SkeletonDirectionalNode.hx mode change 100755 => 100644 away3d/animators/nodes/SkeletonNaryLERPNode.hx mode change 100755 => 100644 away3d/animators/nodes/SpriteSheetClipNode.hx mode change 100755 => 100644 away3d/animators/nodes/UVClipNode.hx mode change 100755 => 100644 away3d/animators/nodes/VertexClipNode.hx mode change 100755 => 100644 away3d/animators/states/AnimationClipState.hx mode change 100755 => 100644 away3d/animators/states/AnimationStateBase.hx mode change 100755 => 100644 away3d/animators/states/IAnimationState.hx mode change 100755 => 100644 away3d/animators/states/ISkeletonAnimationState.hx mode change 100755 => 100644 away3d/animators/states/ISpriteSheetAnimationState.hx mode change 100755 => 100644 away3d/animators/states/IUVAnimationState.hx mode change 100755 => 100644 away3d/animators/states/IVertexAnimationState.hx mode change 100755 => 100644 away3d/animators/states/ParticleAccelerationState.hx mode change 100755 => 100644 away3d/animators/states/ParticleBezierCurveState.hx mode change 100755 => 100644 away3d/animators/states/ParticleBillboardState.hx mode change 100755 => 100644 away3d/animators/states/ParticleColorState.hx mode change 100755 => 100644 away3d/animators/states/ParticleFollowState.hx mode change 100755 => 100644 away3d/animators/states/ParticleInitialColorState.hx mode change 100755 => 100644 away3d/animators/states/ParticleOrbitState.hx mode change 100755 => 100644 away3d/animators/states/ParticleOscillatorState.hx mode change 100755 => 100644 away3d/animators/states/ParticlePositionState.hx mode change 100755 => 100644 away3d/animators/states/ParticleRotateToHeadingState.hx mode change 100755 => 100644 away3d/animators/states/ParticleRotateToPositionState.hx mode change 100755 => 100644 away3d/animators/states/ParticleRotationalVelocityState.hx mode change 100755 => 100644 away3d/animators/states/ParticleScaleState.hx mode change 100755 => 100644 away3d/animators/states/ParticleSegmentedColorState.hx mode change 100755 => 100644 away3d/animators/states/ParticleSegmentedScaleState.hx mode change 100755 => 100644 away3d/animators/states/ParticleSpriteSheetState.hx mode change 100755 => 100644 away3d/animators/states/ParticleStateBase.hx mode change 100755 => 100644 away3d/animators/states/ParticleTimeState.hx mode change 100755 => 100644 away3d/animators/states/ParticleUVState.hx mode change 100755 => 100644 away3d/animators/states/ParticleVelocityState.hx mode change 100755 => 100644 away3d/animators/states/SkeletonBinaryLERPState.hx mode change 100755 => 100644 away3d/animators/states/SkeletonClipState.hx mode change 100755 => 100644 away3d/animators/states/SkeletonDifferenceState.hx mode change 100755 => 100644 away3d/animators/states/SkeletonDirectionalState.hx mode change 100755 => 100644 away3d/animators/states/SkeletonNaryLERPState.hx mode change 100755 => 100644 away3d/animators/states/SpriteSheetAnimationState.hx mode change 100755 => 100644 away3d/animators/states/UVClipState.hx mode change 100755 => 100644 away3d/animators/states/VertexClipState.hx mode change 100755 => 100644 away3d/animators/transitions/CrossfadeTransition.hx mode change 100755 => 100644 away3d/animators/transitions/CrossfadeTransitionNode.hx mode change 100755 => 100644 away3d/animators/transitions/CrossfadeTransitionState.hx mode change 100755 => 100644 away3d/animators/transitions/IAnimationTransition.hx mode change 100755 => 100644 away3d/animators/utils/SkeletonUtils.hx mode change 100755 => 100644 away3d/audio/Sound3D.hx mode change 100755 => 100644 away3d/audio/SoundTransform3D.hx mode change 100755 => 100644 away3d/audio/drivers/AbstractSound3DDriver.hx mode change 100755 => 100644 away3d/audio/drivers/ISound3DDriver.hx mode change 100755 => 100644 away3d/audio/drivers/SimplePanVolumeDriver.hx mode change 100755 => 100644 away3d/bounds/AxisAlignedBoundingBox.hx mode change 100755 => 100644 away3d/bounds/BoundingSphere.hx mode change 100755 => 100644 away3d/bounds/BoundingVolumeBase.hx mode change 100755 => 100644 away3d/bounds/NullBounds.hx mode change 100755 => 100644 away3d/cameras/Camera3D.hx mode change 100755 => 100644 away3d/cameras/lenses/FreeMatrixLens.hx mode change 100755 => 100644 away3d/cameras/lenses/LensBase.hx mode change 100755 => 100644 away3d/cameras/lenses/ObliqueNearPlaneLens.hx mode change 100755 => 100644 away3d/cameras/lenses/OrthographicLens.hx mode change 100755 => 100644 away3d/cameras/lenses/OrthographicOffCenterLens.hx mode change 100755 => 100644 away3d/cameras/lenses/PerspectiveLens.hx mode change 100755 => 100644 away3d/cameras/lenses/PerspectiveOffCenterLens.hx mode change 100755 => 100644 away3d/containers/ObjectContainer3D.hx mode change 100755 => 100644 away3d/containers/Scene3D.hx mode change 100755 => 100644 away3d/containers/View3D.hx mode change 100755 => 100644 away3d/controllers/ControllerBase.hx mode change 100755 => 100644 away3d/controllers/FirstPersonController.hx mode change 100755 => 100644 away3d/controllers/FollowController.hx mode change 100755 => 100644 away3d/controllers/HoverController.hx mode change 100755 => 100644 away3d/controllers/LookAtController.hx mode change 100755 => 100644 away3d/controllers/SpringController.hx mode change 100755 => 100644 away3d/core/base/CompactSubGeometry.hx mode change 100755 => 100644 away3d/core/base/Geometry.hx mode change 100755 => 100644 away3d/core/base/IMaterialOwner.hx mode change 100755 => 100644 away3d/core/base/IRenderable.hx mode change 100755 => 100644 away3d/core/base/ISubGeometry.hx mode change 100755 => 100644 away3d/core/base/Object3D.hx mode change 100755 => 100644 away3d/core/base/ParticleGeometry.hx mode change 100755 => 100644 away3d/core/base/SkinnedSubGeometry.hx mode change 100755 => 100644 away3d/core/base/SubGeometry.hx mode change 100755 => 100644 away3d/core/base/SubGeometryBase.hx mode change 100755 => 100644 away3d/core/base/SubMesh.hx mode change 100755 => 100644 away3d/core/base/data/Face.hx mode change 100755 => 100644 away3d/core/base/data/ParticleData.hx mode change 100755 => 100644 away3d/core/base/data/UV.hx mode change 100755 => 100644 away3d/core/base/data/Vertex.hx mode change 100755 => 100644 away3d/core/data/EntityListItem.hx mode change 100755 => 100644 away3d/core/data/EntityListItemPool.hx mode change 100755 => 100644 away3d/core/data/RenderableListItem.hx mode change 100755 => 100644 away3d/core/data/RenderableListItemPool.hx mode change 100755 => 100644 away3d/core/managers/AGALProgram3DCache.hx mode change 100755 => 100644 away3d/core/managers/Mouse3DManager.hx mode change 100755 => 100644 away3d/core/managers/RTTBufferManager.hx mode change 100755 => 100644 away3d/core/managers/Stage3DManager.hx mode change 100755 => 100644 away3d/core/managers/Stage3DProxy.hx mode change 100755 => 100644 away3d/core/managers/Touch3DManager.hx mode change 100755 => 100644 away3d/core/math/MathConsts.hx mode change 100755 => 100644 away3d/core/math/Matrix3DUtils.hx mode change 100755 => 100644 away3d/core/math/Plane3D.hx mode change 100755 => 100644 away3d/core/math/PlaneClassification.hx mode change 100755 => 100644 away3d/core/math/PoissonLookup.hx mode change 100755 => 100644 away3d/core/math/Quaternion.hx mode change 100755 => 100644 away3d/core/math/Vector3DUtils.hx mode change 100755 => 100644 away3d/core/partition/CameraNode.hx mode change 100755 => 100644 away3d/core/partition/DirectionalLightNode.hx mode change 100755 => 100644 away3d/core/partition/DynamicGrid.hx mode change 100755 => 100644 away3d/core/partition/EntityNode.hx mode change 100755 => 100644 away3d/core/partition/InvertedOctreeNode.hx mode change 100755 => 100644 away3d/core/partition/LightNode.hx mode change 100755 => 100644 away3d/core/partition/LightProbeNode.hx mode change 100755 => 100644 away3d/core/partition/MeshNode.hx mode change 100755 => 100644 away3d/core/partition/NodeBase.hx mode change 100755 => 100644 away3d/core/partition/NullNode.hx mode change 100755 => 100644 away3d/core/partition/Octree.hx mode change 100755 => 100644 away3d/core/partition/OctreeNode.hx mode change 100755 => 100644 away3d/core/partition/Partition3D.hx mode change 100755 => 100644 away3d/core/partition/PointLightNode.hx mode change 100755 => 100644 away3d/core/partition/QuadTree.hx mode change 100755 => 100644 away3d/core/partition/QuadTreeNode.hx mode change 100755 => 100644 away3d/core/partition/RenderableNode.hx mode change 100755 => 100644 away3d/core/partition/SkyBoxNode.hx mode change 100755 => 100644 away3d/core/partition/ViewVolume.hx mode change 100755 => 100644 away3d/core/partition/ViewVolumePartition.hx mode change 100755 => 100644 away3d/core/partition/ViewVolumeRootNode.hx mode change 100755 => 100644 away3d/core/pick/IPicker.hx mode change 100755 => 100644 away3d/core/pick/IPickingCollider.hx mode change 100755 => 100644 away3d/core/pick/PickingColliderBase.hx mode change 100755 => 100644 away3d/core/pick/PickingColliderType.hx mode change 100755 => 100644 away3d/core/pick/PickingCollisionVO.hx mode change 100755 => 100644 away3d/core/pick/PickingType.hx mode change 100755 => 100644 away3d/core/pick/RaycastPicker.hx mode change 100755 => 100644 away3d/core/pick/ShaderPicker.hx mode change 100755 => 100644 away3d/core/render/BackgroundImageRenderer.hx mode change 100755 => 100644 away3d/core/render/DefaultRenderer.hx mode change 100755 => 100644 away3d/core/render/DepthRenderer.hx mode change 100755 => 100644 away3d/core/render/Filter3DRenderer.hx mode change 100755 => 100644 away3d/core/render/PositionRenderer.hx mode change 100755 => 100644 away3d/core/render/RendererBase.hx mode change 100755 => 100644 away3d/core/sort/IEntitySorter.hx mode change 100755 => 100644 away3d/core/sort/RenderableMergeSort.hx mode change 100755 => 100644 away3d/core/traverse/EntityCollector.hx mode change 100755 => 100644 away3d/core/traverse/PartitionTraverser.hx mode change 100755 => 100644 away3d/core/traverse/RaycastCollector.hx mode change 100755 => 100644 away3d/core/traverse/SceneIterator.hx mode change 100755 => 100644 away3d/core/traverse/ShadowCasterCollector.hx mode change 100755 => 100644 away3d/debug/AwayFPS.hx mode change 100755 => 100644 away3d/debug/AwayStats.hx mode change 100755 => 100644 away3d/debug/Debug.hx mode change 100755 => 100644 away3d/debug/Trident.hx mode change 100755 => 100644 away3d/debug/WireframeAxesGrid.hx mode change 100755 => 100644 away3d/debug/data/TridentLines.hx mode change 100755 => 100644 away3d/entities/Entity.hx mode change 100755 => 100644 away3d/entities/Mesh.hx mode change 100755 => 100644 away3d/entities/SegmentSet.hx mode change 100755 => 100644 away3d/entities/Sprite3D.hx mode change 100755 => 100644 away3d/entities/TextureProjector.hx mode change 100755 => 100644 away3d/errors/AbstractMethodError.hx mode change 100755 => 100644 away3d/errors/AnimationSetError.hx mode change 100755 => 100644 away3d/errors/CastError.hx mode change 100755 => 100644 away3d/errors/DeprecationError.hx mode change 100755 => 100644 away3d/errors/InvalidTextureError.hx mode change 100755 => 100644 away3d/events/AnimationStateEvent.hx mode change 100755 => 100644 away3d/events/AnimatorEvent.hx mode change 100755 => 100644 away3d/events/Asset3DEvent.hx mode change 100755 => 100644 away3d/events/CameraEvent.hx mode change 100755 => 100644 away3d/events/GeometryEvent.hx mode change 100755 => 100644 away3d/events/LensEvent.hx mode change 100755 => 100644 away3d/events/LightEvent.hx mode change 100755 => 100644 away3d/events/LoaderEvent.hx mode change 100755 => 100644 away3d/events/MouseEvent3D.hx mode change 100755 => 100644 away3d/events/Object3DEvent.hx mode change 100755 => 100644 away3d/events/ParserEvent.hx mode change 100755 => 100644 away3d/events/PathEvent.hx mode change 100755 => 100644 away3d/events/Scene3DEvent.hx mode change 100755 => 100644 away3d/events/ShadingMethodEvent.hx mode change 100755 => 100644 away3d/events/Stage3DEvent.hx mode change 100755 => 100644 away3d/events/TouchEvent3D.hx mode change 100755 => 100644 away3d/extrusions/DelaunayMesh.hx mode change 100755 => 100644 away3d/extrusions/Elevation.hx mode change 100755 => 100644 away3d/extrusions/LatheExtrude.hx mode change 100755 => 100644 away3d/extrusions/LinearExtrude.hx mode change 100755 => 100644 away3d/extrusions/PathDuplicator.hx mode change 100755 => 100644 away3d/extrusions/PathExtrude.hx mode change 100755 => 100644 away3d/extrusions/SkinExtrude.hx mode change 100755 => 100644 away3d/extrusions/data/FourPoints.hx mode change 100755 => 100644 away3d/extrusions/data/Line.hx mode change 100755 => 100644 away3d/extrusions/data/RenderSide.hx mode change 100755 => 100644 away3d/extrusions/data/SubGeometryList.hx mode change 100755 => 100644 away3d/filters/BloomFilter3D.hx mode change 100755 => 100644 away3d/filters/BlurFilter3D.hx mode change 100755 => 100644 away3d/filters/DepthOfFieldFilter3D.hx mode change 100755 => 100644 away3d/filters/Filter3DBase.hx mode change 100755 => 100644 away3d/filters/HBlurFilter3D.hx mode change 100755 => 100644 away3d/filters/HDepthOfFieldFilter3D.hx mode change 100755 => 100644 away3d/filters/HueSaturationFilter3D.hx mode change 100755 => 100644 away3d/filters/MotionBlurFilter3D.hx mode change 100755 => 100644 away3d/filters/RadialBlurFilter3D.hx mode change 100755 => 100644 away3d/filters/VBlurFilter3D.hx mode change 100755 => 100644 away3d/filters/VDepthOfFieldFilter3D.hx mode change 100755 => 100644 away3d/filters/tasks/Filter3DBloomCompositeTask.hx mode change 100755 => 100644 away3d/filters/tasks/Filter3DBrightPassTask.hx mode change 100755 => 100644 away3d/filters/tasks/Filter3DCompositeTask.hx mode change 100755 => 100644 away3d/filters/tasks/Filter3DDoubleBufferCopyTask.hx mode change 100755 => 100644 away3d/filters/tasks/Filter3DHBlurTask.hx mode change 100755 => 100644 away3d/filters/tasks/Filter3DHDepthOfFFieldTask.hx mode change 100755 => 100644 away3d/filters/tasks/Filter3DHueSaturationTask.hx mode change 100755 => 100644 away3d/filters/tasks/Filter3DRadialBlurTask.hx mode change 100755 => 100644 away3d/filters/tasks/Filter3DTaskBase.hx mode change 100755 => 100644 away3d/filters/tasks/Filter3DVBlurTask.hx mode change 100755 => 100644 away3d/filters/tasks/Filter3DVDepthOfFFieldTask.hx mode change 100755 => 100644 away3d/filters/tasks/Filter3DXFadeCompositeTask.hx mode change 100755 => 100644 away3d/library/Asset3DLibrary.hx mode change 100755 => 100644 away3d/library/Asset3DLibraryBundle.hx mode change 100755 => 100644 away3d/library/assets/Asset3DType.hx mode change 100755 => 100644 away3d/library/assets/BitmapDataAsset.hx mode change 100755 => 100644 away3d/library/assets/IAsset.hx mode change 100755 => 100644 away3d/library/assets/NamedAssetBase.hx mode change 100755 => 100644 away3d/library/naming/ConflictPrecedence.hx mode change 100755 => 100644 away3d/library/naming/ConflictStrategy.hx mode change 100755 => 100644 away3d/library/naming/ConflictStrategyBase.hx mode change 100755 => 100644 away3d/library/naming/ErrorConflictStrategy.hx mode change 100755 => 100644 away3d/library/naming/IgnoreConflictStrategy.hx mode change 100755 => 100644 away3d/library/naming/NumSuffixConflictStrategy.hx mode change 100755 => 100644 away3d/library/utils/Asset3DLibraryIterator.hx mode change 100755 => 100644 away3d/library/utils/IDUtil.hx mode change 100755 => 100644 away3d/lights/DirectionalLight.hx mode change 100755 => 100644 away3d/lights/LightBase.hx mode change 100755 => 100644 away3d/lights/LightProbe.hx mode change 100755 => 100644 away3d/lights/PointLight.hx mode change 100755 => 100644 away3d/lights/shadowmaps/CascadeShadowMapper.hx mode change 100755 => 100644 away3d/lights/shadowmaps/CubeMapShadowMapper.hx mode change 100755 => 100644 away3d/lights/shadowmaps/DirectionalShadowMapper.hx mode change 100755 => 100644 away3d/lights/shadowmaps/NearDirectionalShadowMapper.hx mode change 100755 => 100644 away3d/lights/shadowmaps/ShadowMapperBase.hx mode change 100755 => 100644 away3d/loaders/AssetLoader.hx mode change 100755 => 100644 away3d/loaders/Loader3D.hx mode change 100755 => 100644 away3d/loaders/misc/AssetLoaderContext.hx mode change 100755 => 100644 away3d/loaders/misc/AssetLoaderToken.hx mode change 100755 => 100644 away3d/loaders/misc/ResourceDependency.hx mode change 100755 => 100644 away3d/loaders/misc/SingleFileLoader.hx mode change 100755 => 100644 away3d/loaders/parsers/AC3DParser.hx mode change 100755 => 100644 away3d/loaders/parsers/AWD1Parser.hx mode change 100755 => 100644 away3d/loaders/parsers/AWD2Parser.hx mode change 100755 => 100644 away3d/loaders/parsers/AWDParser.hx mode change 100755 => 100644 away3d/loaders/parsers/DAEParser.hx mode change 100755 => 100644 away3d/loaders/parsers/DXFParser.hx mode change 100755 => 100644 away3d/loaders/parsers/ImageParser.hx mode change 100755 => 100644 away3d/loaders/parsers/MD2Parser.hx mode change 100755 => 100644 away3d/loaders/parsers/MD5AnimParser.hx mode change 100755 => 100644 away3d/loaders/parsers/MD5MeshParser.hx mode change 100755 => 100644 away3d/loaders/parsers/Max3DSParser.hx mode change 100755 => 100644 away3d/loaders/parsers/OBJParser.hx mode change 100755 => 100644 away3d/loaders/parsers/ParserBase.hx mode change 100755 => 100644 away3d/loaders/parsers/ParserDataFormat.hx mode change 100755 => 100644 away3d/loaders/parsers/Parsers.hx mode change 100755 => 100644 away3d/loaders/parsers/utils/ParserUtil.hx mode change 100755 => 100644 away3d/materials/ColorMaterial.hx mode change 100755 => 100644 away3d/materials/ColorMultiPassMaterial.hx mode change 100755 => 100644 away3d/materials/LightSources.hx mode change 100755 => 100644 away3d/materials/MaterialBase.hx mode change 100755 => 100644 away3d/materials/MultiPassMaterialBase.hx mode change 100755 => 100644 away3d/materials/OcclusionMaterial.hx mode change 100755 => 100644 away3d/materials/SegmentMaterial.hx mode change 100755 => 100644 away3d/materials/SinglePassMaterialBase.hx mode change 100755 => 100644 away3d/materials/SkyBoxMaterial.hx mode change 100755 => 100644 away3d/materials/SpriteSheetMaterial.hx mode change 100755 => 100644 away3d/materials/TextureMaterial.hx mode change 100755 => 100644 away3d/materials/TextureMultiPassMaterial.hx mode change 100755 => 100644 away3d/materials/compilation/LightingShaderCompiler.hx mode change 100755 => 100644 away3d/materials/compilation/MethodDependencyCounter.hx mode change 100755 => 100644 away3d/materials/compilation/RegisterPool.hx mode change 100755 => 100644 away3d/materials/compilation/ShaderCompiler.hx mode change 100755 => 100644 away3d/materials/compilation/ShaderRegisterCache.hx mode change 100755 => 100644 away3d/materials/compilation/ShaderRegisterData.hx mode change 100755 => 100644 away3d/materials/compilation/ShaderRegisterElement.hx mode change 100755 => 100644 away3d/materials/compilation/SuperShaderCompiler.hx mode change 100755 => 100644 away3d/materials/lightpickers/LightPickerBase.hx mode change 100755 => 100644 away3d/materials/lightpickers/StaticLightPicker.hx mode change 100755 => 100644 away3d/materials/methods/AlphaMaskMethod.hx mode change 100755 => 100644 away3d/materials/methods/AnisotropicSpecularMethod.hx mode change 100755 => 100644 away3d/materials/methods/BasicAmbientMethod.hx mode change 100755 => 100644 away3d/materials/methods/BasicDiffuseMethod.hx mode change 100755 => 100644 away3d/materials/methods/BasicNormalMethod.hx mode change 100755 => 100644 away3d/materials/methods/BasicSpecularMethod.hx mode change 100755 => 100644 away3d/materials/methods/CascadeShadowMapMethod.hx mode change 100755 => 100644 away3d/materials/methods/CelDiffuseMethod.hx mode change 100755 => 100644 away3d/materials/methods/CelSpecularMethod.hx mode change 100755 => 100644 away3d/materials/methods/ColorMatrixMethod.hx mode change 100755 => 100644 away3d/materials/methods/ColorTransformMethod.hx mode change 100755 => 100644 away3d/materials/methods/CompositeDiffuseMethod.hx mode change 100755 => 100644 away3d/materials/methods/CompositeSpecularMethod.hx mode change 100755 => 100644 away3d/materials/methods/DepthDiffuseMethod.hx mode change 100755 => 100644 away3d/materials/methods/DitheredShadowMapMethod.hx mode change 100755 => 100644 away3d/materials/methods/EffectMethodBase.hx mode change 100755 => 100644 away3d/materials/methods/EnvMapAmbientMethod.hx mode change 100755 => 100644 away3d/materials/methods/EnvMapMethod.hx mode change 100755 => 100644 away3d/materials/methods/FilteredShadowMapMethod.hx mode change 100755 => 100644 away3d/materials/methods/FogMethod.hx mode change 100755 => 100644 away3d/materials/methods/FresnelEnvMapMethod.hx mode change 100755 => 100644 away3d/materials/methods/FresnelPlanarReflectionMethod.hx mode change 100755 => 100644 away3d/materials/methods/FresnelSpecularMethod.hx mode change 100755 => 100644 away3d/materials/methods/GradientDiffuseMethod.hx mode change 100755 => 100644 away3d/materials/methods/HardShadowMapMethod.hx mode change 100755 => 100644 away3d/materials/methods/HeightMapNormalMethod.hx mode change 100755 => 100644 away3d/materials/methods/LightMapDiffuseMethod.hx mode change 100755 => 100644 away3d/materials/methods/LightMapMethod.hx mode change 100755 => 100644 away3d/materials/methods/LightingMethodBase.hx mode change 100755 => 100644 away3d/materials/methods/MethodVO.hx mode change 100755 => 100644 away3d/materials/methods/MethodVOSet.hx mode change 100755 => 100644 away3d/materials/methods/NearShadowMapMethod.hx mode change 100755 => 100644 away3d/materials/methods/OutlineMethod.hx mode change 100755 => 100644 away3d/materials/methods/PhongSpecularMethod.hx mode change 100755 => 100644 away3d/materials/methods/PlanarReflectionMethod.hx mode change 100755 => 100644 away3d/materials/methods/ProjectiveTextureMethod.hx mode change 100755 => 100644 away3d/materials/methods/RefractionEnvMapMethod.hx mode change 100755 => 100644 away3d/materials/methods/RimLightMethod.hx mode change 100755 => 100644 away3d/materials/methods/ShaderMethodSetup.hx mode change 100755 => 100644 away3d/materials/methods/ShadingMethodBase.hx mode change 100755 => 100644 away3d/materials/methods/ShadowMapMethodBase.hx mode change 100755 => 100644 away3d/materials/methods/SimpleShadowMapMethodBase.hx mode change 100755 => 100644 away3d/materials/methods/SimpleWaterNormalMethod.hx mode change 100755 => 100644 away3d/materials/methods/SoftShadowMapMethod.hx mode change 100755 => 100644 away3d/materials/methods/SubsurfaceScatteringDiffuseMethod.hx mode change 100755 => 100644 away3d/materials/methods/TerrainDiffuseMethod.hx mode change 100755 => 100644 away3d/materials/methods/TripleFilteredShadowMapMethod.hx mode change 100755 => 100644 away3d/materials/methods/WrapDiffuseMethod.hx mode change 100755 => 100644 away3d/materials/passes/CompiledPass.hx mode change 100755 => 100644 away3d/materials/passes/DepthMapPass.hx mode change 100755 => 100644 away3d/materials/passes/DistanceMapPass.hx mode change 100755 => 100644 away3d/materials/passes/LightingPass.hx mode change 100755 => 100644 away3d/materials/passes/MaterialPassBase.hx mode change 100755 => 100644 away3d/materials/passes/OutlinePass.hx mode change 100755 => 100644 away3d/materials/passes/SegmentPass.hx mode change 100755 => 100644 away3d/materials/passes/ShadowCasterPass.hx mode change 100755 => 100644 away3d/materials/passes/SingleObjectDepthPass.hx mode change 100755 => 100644 away3d/materials/passes/SkyBoxPass.hx mode change 100755 => 100644 away3d/materials/passes/SuperShaderPass.hx mode change 100755 => 100644 away3d/materials/utils/DefaultMaterialManager.hx mode change 100755 => 100644 away3d/materials/utils/IVideoPlayer.hx mode change 100755 => 100644 away3d/materials/utils/MipmapGenerator.hx mode change 100755 => 100644 away3d/materials/utils/MultipleMaterials.hx mode change 100755 => 100644 away3d/materials/utils/SimpleVideoPlayer.hx mode change 100755 => 100644 away3d/materials/utils/WireframeMapGenerator.hx mode change 100755 => 100644 away3d/paths/CubicPath.hx mode change 100755 => 100644 away3d/paths/CubicPathSegment.hx mode change 100755 => 100644 away3d/paths/IPath.hx mode change 100755 => 100644 away3d/paths/IPathSegment.hx mode change 100755 => 100644 away3d/paths/QuadraticPath.hx mode change 100755 => 100644 away3d/paths/QuadraticPathSegment.hx mode change 100755 => 100644 away3d/paths/SegmentedPathBase.hx mode change 100755 => 100644 away3d/primitives/CapsuleGeometry.hx mode change 100755 => 100644 away3d/primitives/ConeGeometry.hx mode change 100755 => 100644 away3d/primitives/CubeGeometry.hx mode change 100755 => 100644 away3d/primitives/CylinderGeometry.hx mode change 100755 => 100644 away3d/primitives/LineSegment.hx mode change 100755 => 100644 away3d/primitives/NURBSGeometry.hx mode change 100755 => 100644 away3d/primitives/PlaneGeometry.hx mode change 100755 => 100644 away3d/primitives/PrimitiveBase.hx mode change 100755 => 100644 away3d/primitives/RegularPolygonGeometry.hx mode change 100755 => 100644 away3d/primitives/SkyBox.hx mode change 100755 => 100644 away3d/primitives/SphereGeometry.hx mode change 100755 => 100644 away3d/primitives/TorusGeometry.hx mode change 100755 => 100644 away3d/primitives/WireframeCube.hx mode change 100755 => 100644 away3d/primitives/WireframeCylinder.hx mode change 100755 => 100644 away3d/primitives/WireframePlane.hx mode change 100755 => 100644 away3d/primitives/WireframePrimitiveBase.hx mode change 100755 => 100644 away3d/primitives/WireframeRegularPolygon.hx mode change 100755 => 100644 away3d/primitives/WireframeSphere.hx mode change 100755 => 100644 away3d/primitives/WireframeTetrahedron.hx mode change 100755 => 100644 away3d/primitives/data/NURBSVertex.hx mode change 100755 => 100644 away3d/primitives/data/Segment.hx mode change 100755 => 100644 away3d/stereo/StereoCamera3D.hx mode change 100755 => 100644 away3d/stereo/StereoRenderer.hx mode change 100755 => 100644 away3d/stereo/StereoView3D.hx mode change 100755 => 100644 away3d/stereo/methods/AnaglyphStereoRenderMethod.hx mode change 100755 => 100644 away3d/stereo/methods/InterleavedStereoRenderMethod.hx mode change 100755 => 100644 away3d/stereo/methods/SBSStereoRenderMethod.hx mode change 100755 => 100644 away3d/stereo/methods/StereoRenderMethodBase.hx mode change 100755 => 100644 away3d/textures/ATFCubeTexture.hx mode change 100755 => 100644 away3d/textures/ATFData.hx mode change 100755 => 100644 away3d/textures/ATFTexture.hx mode change 100755 => 100644 away3d/textures/Anisotropy.hx mode change 100755 => 100644 away3d/textures/BitmapCubeTexture.hx mode change 100755 => 100644 away3d/textures/BitmapTexture.hx mode change 100755 => 100644 away3d/textures/BitmapTextureCache.hx mode change 100755 => 100644 away3d/textures/CubeReflectionTexture.hx mode change 100755 => 100644 away3d/textures/CubeTextureBase.hx mode change 100755 => 100644 away3d/textures/PlanarReflectionTexture.hx mode change 100755 => 100644 away3d/textures/RenderCubeTexture.hx mode change 100755 => 100644 away3d/textures/RenderTexture.hx mode change 100755 => 100644 away3d/textures/SpecularBitmapTexture.hx mode change 100755 => 100644 away3d/textures/Texture2DBase.hx mode change 100755 => 100644 away3d/textures/TextureProxyBase.hx mode change 100755 => 100644 away3d/textures/VideoTexture.hx mode change 100755 => 100644 away3d/textures/WebcamTexture.hx mode change 100755 => 100644 away3d/tools/commands/Align.hx mode change 100755 => 100644 away3d/tools/commands/Explode.hx mode change 100755 => 100644 away3d/tools/commands/Merge.hx mode change 100755 => 100644 away3d/tools/commands/Mirror.hx mode change 100755 => 100644 away3d/tools/commands/SphereMaker.hx mode change 100755 => 100644 away3d/tools/commands/Weld.hx mode change 100755 => 100644 away3d/tools/helpers/FaceHelper.hx mode change 100755 => 100644 away3d/tools/helpers/LightsHelper.hx mode change 100755 => 100644 away3d/tools/helpers/MeshDebugger.hx mode change 100755 => 100644 away3d/tools/helpers/MeshHelper.hx mode change 100755 => 100644 away3d/tools/helpers/ParticleGeometryHelper.hx mode change 100755 => 100644 away3d/tools/helpers/SpriteSheetHelper.hx mode change 100755 => 100644 away3d/tools/helpers/data/MeshDebug.hx mode change 100755 => 100644 away3d/tools/helpers/data/ParticleGeometryTransform.hx mode change 100755 => 100644 away3d/tools/serialize/Serialize.hx mode change 100755 => 100644 away3d/tools/serialize/SerializerBase.hx mode change 100755 => 100644 away3d/tools/serialize/TraceSerializer.hx mode change 100755 => 100644 away3d/tools/utils/Bounds.hx mode change 100755 => 100644 away3d/tools/utils/ColorHitMap.hx mode change 100755 => 100644 away3d/tools/utils/Drag3D.hx mode change 100755 => 100644 away3d/tools/utils/GeomUtil.hx mode change 100755 => 100644 away3d/tools/utils/Grid.hx mode change 100755 => 100644 away3d/tools/utils/Projector.hx mode change 100755 => 100644 away3d/tools/utils/Ray.hx mode change 100755 => 100644 away3d/tools/utils/TextureUtils.hx mode change 100755 => 100644 away3d/utils/Cast.hx mode change 100755 => 100644 haxelib.json mode change 100755 => 100644 include.xml diff --git a/away3d/Away3D.hx b/away3d/Away3D.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/AnimationSetBase.hx b/away3d/animators/AnimationSetBase.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/AnimatorBase.hx b/away3d/animators/AnimatorBase.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/IAnimationSet.hx b/away3d/animators/IAnimationSet.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/IAnimator.hx b/away3d/animators/IAnimator.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/ParticleAnimationSet.hx b/away3d/animators/ParticleAnimationSet.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/ParticleAnimator.hx b/away3d/animators/ParticleAnimator.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/PathAnimator.hx b/away3d/animators/PathAnimator.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/SkeletonAnimationSet.hx b/away3d/animators/SkeletonAnimationSet.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/SkeletonAnimator.hx b/away3d/animators/SkeletonAnimator.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/SpriteSheetAnimationSet.hx b/away3d/animators/SpriteSheetAnimationSet.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/SpriteSheetAnimator.hx b/away3d/animators/SpriteSheetAnimator.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/UVAnimationSet.hx b/away3d/animators/UVAnimationSet.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/UVAnimator.hx b/away3d/animators/UVAnimator.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/VertexAnimationSet.hx b/away3d/animators/VertexAnimationSet.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/VertexAnimator.hx b/away3d/animators/VertexAnimator.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/data/AnimationRegisterCache.hx b/away3d/animators/data/AnimationRegisterCache.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/data/AnimationSubGeometry.hx b/away3d/animators/data/AnimationSubGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/data/ColorSegmentPoint.hx b/away3d/animators/data/ColorSegmentPoint.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/data/JointPose.hx b/away3d/animators/data/JointPose.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/data/ParticleAnimationData.hx b/away3d/animators/data/ParticleAnimationData.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/data/ParticleProperties.hx b/away3d/animators/data/ParticleProperties.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/data/ParticlePropertiesMode.hx b/away3d/animators/data/ParticlePropertiesMode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/data/Skeleton.hx b/away3d/animators/data/Skeleton.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/data/SkeletonJoint.hx b/away3d/animators/data/SkeletonJoint.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/data/SkeletonPose.hx b/away3d/animators/data/SkeletonPose.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/data/SpriteSheetAnimationFrame.hx b/away3d/animators/data/SpriteSheetAnimationFrame.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/data/UVAnimationFrame.hx b/away3d/animators/data/UVAnimationFrame.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/data/VertexAnimationMode.hx b/away3d/animators/data/VertexAnimationMode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/AnimationClipNodeBase.hx b/away3d/animators/nodes/AnimationClipNodeBase.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/AnimationNodeBase.hx b/away3d/animators/nodes/AnimationNodeBase.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ISpriteSheetAnimationNode.hx b/away3d/animators/nodes/ISpriteSheetAnimationNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleAccelerationNode.hx b/away3d/animators/nodes/ParticleAccelerationNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleBezierCurveNode.hx b/away3d/animators/nodes/ParticleBezierCurveNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleBillboardNode.hx b/away3d/animators/nodes/ParticleBillboardNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleColorNode.hx b/away3d/animators/nodes/ParticleColorNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleFollowNode.hx b/away3d/animators/nodes/ParticleFollowNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleInitialColorNode.hx b/away3d/animators/nodes/ParticleInitialColorNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleNodeBase.hx b/away3d/animators/nodes/ParticleNodeBase.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleOrbitNode.hx b/away3d/animators/nodes/ParticleOrbitNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleOscillatorNode.hx b/away3d/animators/nodes/ParticleOscillatorNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticlePositionNode.hx b/away3d/animators/nodes/ParticlePositionNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleRotateToHeadingNode.hx b/away3d/animators/nodes/ParticleRotateToHeadingNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleRotateToPositionNode.hx b/away3d/animators/nodes/ParticleRotateToPositionNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleRotationalVelocityNode.hx b/away3d/animators/nodes/ParticleRotationalVelocityNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleScaleNode.hx b/away3d/animators/nodes/ParticleScaleNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleSegmentedColorNode.hx b/away3d/animators/nodes/ParticleSegmentedColorNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleSegmentedScaleNode.hx b/away3d/animators/nodes/ParticleSegmentedScaleNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleSpriteSheetNode.hx b/away3d/animators/nodes/ParticleSpriteSheetNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleTimeNode.hx b/away3d/animators/nodes/ParticleTimeNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleUVNode.hx b/away3d/animators/nodes/ParticleUVNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/ParticleVelocityNode.hx b/away3d/animators/nodes/ParticleVelocityNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/SkeletonBinaryLERPNode.hx b/away3d/animators/nodes/SkeletonBinaryLERPNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/SkeletonClipNode.hx b/away3d/animators/nodes/SkeletonClipNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/SkeletonDifferenceNode.hx b/away3d/animators/nodes/SkeletonDifferenceNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/SkeletonDirectionalNode.hx b/away3d/animators/nodes/SkeletonDirectionalNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/SkeletonNaryLERPNode.hx b/away3d/animators/nodes/SkeletonNaryLERPNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/SpriteSheetClipNode.hx b/away3d/animators/nodes/SpriteSheetClipNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/UVClipNode.hx b/away3d/animators/nodes/UVClipNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/nodes/VertexClipNode.hx b/away3d/animators/nodes/VertexClipNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/AnimationClipState.hx b/away3d/animators/states/AnimationClipState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/AnimationStateBase.hx b/away3d/animators/states/AnimationStateBase.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/IAnimationState.hx b/away3d/animators/states/IAnimationState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ISkeletonAnimationState.hx b/away3d/animators/states/ISkeletonAnimationState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ISpriteSheetAnimationState.hx b/away3d/animators/states/ISpriteSheetAnimationState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/IUVAnimationState.hx b/away3d/animators/states/IUVAnimationState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/IVertexAnimationState.hx b/away3d/animators/states/IVertexAnimationState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleAccelerationState.hx b/away3d/animators/states/ParticleAccelerationState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleBezierCurveState.hx b/away3d/animators/states/ParticleBezierCurveState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleBillboardState.hx b/away3d/animators/states/ParticleBillboardState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleColorState.hx b/away3d/animators/states/ParticleColorState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleFollowState.hx b/away3d/animators/states/ParticleFollowState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleInitialColorState.hx b/away3d/animators/states/ParticleInitialColorState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleOrbitState.hx b/away3d/animators/states/ParticleOrbitState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleOscillatorState.hx b/away3d/animators/states/ParticleOscillatorState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticlePositionState.hx b/away3d/animators/states/ParticlePositionState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleRotateToHeadingState.hx b/away3d/animators/states/ParticleRotateToHeadingState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleRotateToPositionState.hx b/away3d/animators/states/ParticleRotateToPositionState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleRotationalVelocityState.hx b/away3d/animators/states/ParticleRotationalVelocityState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleScaleState.hx b/away3d/animators/states/ParticleScaleState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleSegmentedColorState.hx b/away3d/animators/states/ParticleSegmentedColorState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleSegmentedScaleState.hx b/away3d/animators/states/ParticleSegmentedScaleState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleSpriteSheetState.hx b/away3d/animators/states/ParticleSpriteSheetState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleStateBase.hx b/away3d/animators/states/ParticleStateBase.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleTimeState.hx b/away3d/animators/states/ParticleTimeState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleUVState.hx b/away3d/animators/states/ParticleUVState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/ParticleVelocityState.hx b/away3d/animators/states/ParticleVelocityState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/SkeletonBinaryLERPState.hx b/away3d/animators/states/SkeletonBinaryLERPState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/SkeletonClipState.hx b/away3d/animators/states/SkeletonClipState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/SkeletonDifferenceState.hx b/away3d/animators/states/SkeletonDifferenceState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/SkeletonDirectionalState.hx b/away3d/animators/states/SkeletonDirectionalState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/SkeletonNaryLERPState.hx b/away3d/animators/states/SkeletonNaryLERPState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/SpriteSheetAnimationState.hx b/away3d/animators/states/SpriteSheetAnimationState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/UVClipState.hx b/away3d/animators/states/UVClipState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/states/VertexClipState.hx b/away3d/animators/states/VertexClipState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/transitions/CrossfadeTransition.hx b/away3d/animators/transitions/CrossfadeTransition.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/transitions/CrossfadeTransitionNode.hx b/away3d/animators/transitions/CrossfadeTransitionNode.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/transitions/CrossfadeTransitionState.hx b/away3d/animators/transitions/CrossfadeTransitionState.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/transitions/IAnimationTransition.hx b/away3d/animators/transitions/IAnimationTransition.hx old mode 100755 new mode 100644 diff --git a/away3d/animators/utils/SkeletonUtils.hx b/away3d/animators/utils/SkeletonUtils.hx old mode 100755 new mode 100644 diff --git a/away3d/audio/Sound3D.hx b/away3d/audio/Sound3D.hx old mode 100755 new mode 100644 diff --git a/away3d/audio/SoundTransform3D.hx b/away3d/audio/SoundTransform3D.hx old mode 100755 new mode 100644 diff --git a/away3d/audio/drivers/AbstractSound3DDriver.hx b/away3d/audio/drivers/AbstractSound3DDriver.hx old mode 100755 new mode 100644 diff --git a/away3d/audio/drivers/ISound3DDriver.hx b/away3d/audio/drivers/ISound3DDriver.hx old mode 100755 new mode 100644 diff --git a/away3d/audio/drivers/SimplePanVolumeDriver.hx b/away3d/audio/drivers/SimplePanVolumeDriver.hx old mode 100755 new mode 100644 diff --git a/away3d/bounds/AxisAlignedBoundingBox.hx b/away3d/bounds/AxisAlignedBoundingBox.hx old mode 100755 new mode 100644 diff --git a/away3d/bounds/BoundingSphere.hx b/away3d/bounds/BoundingSphere.hx old mode 100755 new mode 100644 diff --git a/away3d/bounds/BoundingVolumeBase.hx b/away3d/bounds/BoundingVolumeBase.hx old mode 100755 new mode 100644 diff --git a/away3d/bounds/NullBounds.hx b/away3d/bounds/NullBounds.hx old mode 100755 new mode 100644 diff --git a/away3d/cameras/Camera3D.hx b/away3d/cameras/Camera3D.hx old mode 100755 new mode 100644 diff --git a/away3d/cameras/lenses/FreeMatrixLens.hx b/away3d/cameras/lenses/FreeMatrixLens.hx old mode 100755 new mode 100644 diff --git a/away3d/cameras/lenses/LensBase.hx b/away3d/cameras/lenses/LensBase.hx old mode 100755 new mode 100644 diff --git a/away3d/cameras/lenses/ObliqueNearPlaneLens.hx b/away3d/cameras/lenses/ObliqueNearPlaneLens.hx old mode 100755 new mode 100644 diff --git a/away3d/cameras/lenses/OrthographicLens.hx b/away3d/cameras/lenses/OrthographicLens.hx old mode 100755 new mode 100644 diff --git a/away3d/cameras/lenses/OrthographicOffCenterLens.hx b/away3d/cameras/lenses/OrthographicOffCenterLens.hx old mode 100755 new mode 100644 diff --git a/away3d/cameras/lenses/PerspectiveLens.hx b/away3d/cameras/lenses/PerspectiveLens.hx old mode 100755 new mode 100644 diff --git a/away3d/cameras/lenses/PerspectiveOffCenterLens.hx b/away3d/cameras/lenses/PerspectiveOffCenterLens.hx old mode 100755 new mode 100644 diff --git a/away3d/containers/ObjectContainer3D.hx b/away3d/containers/ObjectContainer3D.hx old mode 100755 new mode 100644 diff --git a/away3d/containers/Scene3D.hx b/away3d/containers/Scene3D.hx old mode 100755 new mode 100644 diff --git a/away3d/containers/View3D.hx b/away3d/containers/View3D.hx old mode 100755 new mode 100644 diff --git a/away3d/controllers/ControllerBase.hx b/away3d/controllers/ControllerBase.hx old mode 100755 new mode 100644 diff --git a/away3d/controllers/FirstPersonController.hx b/away3d/controllers/FirstPersonController.hx old mode 100755 new mode 100644 diff --git a/away3d/controllers/FollowController.hx b/away3d/controllers/FollowController.hx old mode 100755 new mode 100644 diff --git a/away3d/controllers/HoverController.hx b/away3d/controllers/HoverController.hx old mode 100755 new mode 100644 diff --git a/away3d/controllers/LookAtController.hx b/away3d/controllers/LookAtController.hx old mode 100755 new mode 100644 diff --git a/away3d/controllers/SpringController.hx b/away3d/controllers/SpringController.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/CompactSubGeometry.hx b/away3d/core/base/CompactSubGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/Geometry.hx b/away3d/core/base/Geometry.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/IMaterialOwner.hx b/away3d/core/base/IMaterialOwner.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/IRenderable.hx b/away3d/core/base/IRenderable.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/ISubGeometry.hx b/away3d/core/base/ISubGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/Object3D.hx b/away3d/core/base/Object3D.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/ParticleGeometry.hx b/away3d/core/base/ParticleGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/SkinnedSubGeometry.hx b/away3d/core/base/SkinnedSubGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/SubGeometry.hx b/away3d/core/base/SubGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/SubGeometryBase.hx b/away3d/core/base/SubGeometryBase.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/SubMesh.hx b/away3d/core/base/SubMesh.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/data/Face.hx b/away3d/core/base/data/Face.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/data/ParticleData.hx b/away3d/core/base/data/ParticleData.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/data/UV.hx b/away3d/core/base/data/UV.hx old mode 100755 new mode 100644 diff --git a/away3d/core/base/data/Vertex.hx b/away3d/core/base/data/Vertex.hx old mode 100755 new mode 100644 diff --git a/away3d/core/data/EntityListItem.hx b/away3d/core/data/EntityListItem.hx old mode 100755 new mode 100644 diff --git a/away3d/core/data/EntityListItemPool.hx b/away3d/core/data/EntityListItemPool.hx old mode 100755 new mode 100644 diff --git a/away3d/core/data/RenderableListItem.hx b/away3d/core/data/RenderableListItem.hx old mode 100755 new mode 100644 diff --git a/away3d/core/data/RenderableListItemPool.hx b/away3d/core/data/RenderableListItemPool.hx old mode 100755 new mode 100644 diff --git a/away3d/core/managers/AGALProgram3DCache.hx b/away3d/core/managers/AGALProgram3DCache.hx old mode 100755 new mode 100644 diff --git a/away3d/core/managers/Mouse3DManager.hx b/away3d/core/managers/Mouse3DManager.hx old mode 100755 new mode 100644 diff --git a/away3d/core/managers/RTTBufferManager.hx b/away3d/core/managers/RTTBufferManager.hx old mode 100755 new mode 100644 diff --git a/away3d/core/managers/Stage3DManager.hx b/away3d/core/managers/Stage3DManager.hx old mode 100755 new mode 100644 diff --git a/away3d/core/managers/Stage3DProxy.hx b/away3d/core/managers/Stage3DProxy.hx old mode 100755 new mode 100644 diff --git a/away3d/core/managers/Touch3DManager.hx b/away3d/core/managers/Touch3DManager.hx old mode 100755 new mode 100644 diff --git a/away3d/core/math/MathConsts.hx b/away3d/core/math/MathConsts.hx old mode 100755 new mode 100644 diff --git a/away3d/core/math/Matrix3DUtils.hx b/away3d/core/math/Matrix3DUtils.hx old mode 100755 new mode 100644 diff --git a/away3d/core/math/Plane3D.hx b/away3d/core/math/Plane3D.hx old mode 100755 new mode 100644 diff --git a/away3d/core/math/PlaneClassification.hx b/away3d/core/math/PlaneClassification.hx old mode 100755 new mode 100644 diff --git a/away3d/core/math/PoissonLookup.hx b/away3d/core/math/PoissonLookup.hx old mode 100755 new mode 100644 diff --git a/away3d/core/math/Quaternion.hx b/away3d/core/math/Quaternion.hx old mode 100755 new mode 100644 diff --git a/away3d/core/math/Vector3DUtils.hx b/away3d/core/math/Vector3DUtils.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/CameraNode.hx b/away3d/core/partition/CameraNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/DirectionalLightNode.hx b/away3d/core/partition/DirectionalLightNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/DynamicGrid.hx b/away3d/core/partition/DynamicGrid.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/EntityNode.hx b/away3d/core/partition/EntityNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/InvertedOctreeNode.hx b/away3d/core/partition/InvertedOctreeNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/LightNode.hx b/away3d/core/partition/LightNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/LightProbeNode.hx b/away3d/core/partition/LightProbeNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/MeshNode.hx b/away3d/core/partition/MeshNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/NodeBase.hx b/away3d/core/partition/NodeBase.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/NullNode.hx b/away3d/core/partition/NullNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/Octree.hx b/away3d/core/partition/Octree.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/OctreeNode.hx b/away3d/core/partition/OctreeNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/Partition3D.hx b/away3d/core/partition/Partition3D.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/PointLightNode.hx b/away3d/core/partition/PointLightNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/QuadTree.hx b/away3d/core/partition/QuadTree.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/QuadTreeNode.hx b/away3d/core/partition/QuadTreeNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/RenderableNode.hx b/away3d/core/partition/RenderableNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/SkyBoxNode.hx b/away3d/core/partition/SkyBoxNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/ViewVolume.hx b/away3d/core/partition/ViewVolume.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/ViewVolumePartition.hx b/away3d/core/partition/ViewVolumePartition.hx old mode 100755 new mode 100644 diff --git a/away3d/core/partition/ViewVolumeRootNode.hx b/away3d/core/partition/ViewVolumeRootNode.hx old mode 100755 new mode 100644 diff --git a/away3d/core/pick/IPicker.hx b/away3d/core/pick/IPicker.hx old mode 100755 new mode 100644 diff --git a/away3d/core/pick/IPickingCollider.hx b/away3d/core/pick/IPickingCollider.hx old mode 100755 new mode 100644 diff --git a/away3d/core/pick/PickingColliderBase.hx b/away3d/core/pick/PickingColliderBase.hx old mode 100755 new mode 100644 diff --git a/away3d/core/pick/PickingColliderType.hx b/away3d/core/pick/PickingColliderType.hx old mode 100755 new mode 100644 diff --git a/away3d/core/pick/PickingCollisionVO.hx b/away3d/core/pick/PickingCollisionVO.hx old mode 100755 new mode 100644 diff --git a/away3d/core/pick/PickingType.hx b/away3d/core/pick/PickingType.hx old mode 100755 new mode 100644 diff --git a/away3d/core/pick/RaycastPicker.hx b/away3d/core/pick/RaycastPicker.hx old mode 100755 new mode 100644 diff --git a/away3d/core/pick/ShaderPicker.hx b/away3d/core/pick/ShaderPicker.hx old mode 100755 new mode 100644 diff --git a/away3d/core/render/BackgroundImageRenderer.hx b/away3d/core/render/BackgroundImageRenderer.hx old mode 100755 new mode 100644 diff --git a/away3d/core/render/DefaultRenderer.hx b/away3d/core/render/DefaultRenderer.hx old mode 100755 new mode 100644 diff --git a/away3d/core/render/DepthRenderer.hx b/away3d/core/render/DepthRenderer.hx old mode 100755 new mode 100644 diff --git a/away3d/core/render/Filter3DRenderer.hx b/away3d/core/render/Filter3DRenderer.hx old mode 100755 new mode 100644 diff --git a/away3d/core/render/PositionRenderer.hx b/away3d/core/render/PositionRenderer.hx old mode 100755 new mode 100644 diff --git a/away3d/core/render/RendererBase.hx b/away3d/core/render/RendererBase.hx old mode 100755 new mode 100644 diff --git a/away3d/core/sort/IEntitySorter.hx b/away3d/core/sort/IEntitySorter.hx old mode 100755 new mode 100644 diff --git a/away3d/core/sort/RenderableMergeSort.hx b/away3d/core/sort/RenderableMergeSort.hx old mode 100755 new mode 100644 diff --git a/away3d/core/traverse/EntityCollector.hx b/away3d/core/traverse/EntityCollector.hx old mode 100755 new mode 100644 diff --git a/away3d/core/traverse/PartitionTraverser.hx b/away3d/core/traverse/PartitionTraverser.hx old mode 100755 new mode 100644 diff --git a/away3d/core/traverse/RaycastCollector.hx b/away3d/core/traverse/RaycastCollector.hx old mode 100755 new mode 100644 diff --git a/away3d/core/traverse/SceneIterator.hx b/away3d/core/traverse/SceneIterator.hx old mode 100755 new mode 100644 diff --git a/away3d/core/traverse/ShadowCasterCollector.hx b/away3d/core/traverse/ShadowCasterCollector.hx old mode 100755 new mode 100644 diff --git a/away3d/debug/AwayFPS.hx b/away3d/debug/AwayFPS.hx old mode 100755 new mode 100644 diff --git a/away3d/debug/AwayStats.hx b/away3d/debug/AwayStats.hx old mode 100755 new mode 100644 diff --git a/away3d/debug/Debug.hx b/away3d/debug/Debug.hx old mode 100755 new mode 100644 diff --git a/away3d/debug/Trident.hx b/away3d/debug/Trident.hx old mode 100755 new mode 100644 diff --git a/away3d/debug/WireframeAxesGrid.hx b/away3d/debug/WireframeAxesGrid.hx old mode 100755 new mode 100644 diff --git a/away3d/debug/data/TridentLines.hx b/away3d/debug/data/TridentLines.hx old mode 100755 new mode 100644 diff --git a/away3d/entities/Entity.hx b/away3d/entities/Entity.hx old mode 100755 new mode 100644 diff --git a/away3d/entities/Mesh.hx b/away3d/entities/Mesh.hx old mode 100755 new mode 100644 diff --git a/away3d/entities/SegmentSet.hx b/away3d/entities/SegmentSet.hx old mode 100755 new mode 100644 diff --git a/away3d/entities/Sprite3D.hx b/away3d/entities/Sprite3D.hx old mode 100755 new mode 100644 diff --git a/away3d/entities/TextureProjector.hx b/away3d/entities/TextureProjector.hx old mode 100755 new mode 100644 diff --git a/away3d/errors/AbstractMethodError.hx b/away3d/errors/AbstractMethodError.hx old mode 100755 new mode 100644 diff --git a/away3d/errors/AnimationSetError.hx b/away3d/errors/AnimationSetError.hx old mode 100755 new mode 100644 diff --git a/away3d/errors/CastError.hx b/away3d/errors/CastError.hx old mode 100755 new mode 100644 diff --git a/away3d/errors/DeprecationError.hx b/away3d/errors/DeprecationError.hx old mode 100755 new mode 100644 diff --git a/away3d/errors/InvalidTextureError.hx b/away3d/errors/InvalidTextureError.hx old mode 100755 new mode 100644 diff --git a/away3d/events/AnimationStateEvent.hx b/away3d/events/AnimationStateEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/AnimatorEvent.hx b/away3d/events/AnimatorEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/Asset3DEvent.hx b/away3d/events/Asset3DEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/CameraEvent.hx b/away3d/events/CameraEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/GeometryEvent.hx b/away3d/events/GeometryEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/LensEvent.hx b/away3d/events/LensEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/LightEvent.hx b/away3d/events/LightEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/LoaderEvent.hx b/away3d/events/LoaderEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/MouseEvent3D.hx b/away3d/events/MouseEvent3D.hx old mode 100755 new mode 100644 diff --git a/away3d/events/Object3DEvent.hx b/away3d/events/Object3DEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/ParserEvent.hx b/away3d/events/ParserEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/PathEvent.hx b/away3d/events/PathEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/Scene3DEvent.hx b/away3d/events/Scene3DEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/ShadingMethodEvent.hx b/away3d/events/ShadingMethodEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/Stage3DEvent.hx b/away3d/events/Stage3DEvent.hx old mode 100755 new mode 100644 diff --git a/away3d/events/TouchEvent3D.hx b/away3d/events/TouchEvent3D.hx old mode 100755 new mode 100644 diff --git a/away3d/extrusions/DelaunayMesh.hx b/away3d/extrusions/DelaunayMesh.hx old mode 100755 new mode 100644 diff --git a/away3d/extrusions/Elevation.hx b/away3d/extrusions/Elevation.hx old mode 100755 new mode 100644 diff --git a/away3d/extrusions/LatheExtrude.hx b/away3d/extrusions/LatheExtrude.hx old mode 100755 new mode 100644 diff --git a/away3d/extrusions/LinearExtrude.hx b/away3d/extrusions/LinearExtrude.hx old mode 100755 new mode 100644 diff --git a/away3d/extrusions/PathDuplicator.hx b/away3d/extrusions/PathDuplicator.hx old mode 100755 new mode 100644 diff --git a/away3d/extrusions/PathExtrude.hx b/away3d/extrusions/PathExtrude.hx old mode 100755 new mode 100644 diff --git a/away3d/extrusions/SkinExtrude.hx b/away3d/extrusions/SkinExtrude.hx old mode 100755 new mode 100644 diff --git a/away3d/extrusions/data/FourPoints.hx b/away3d/extrusions/data/FourPoints.hx old mode 100755 new mode 100644 diff --git a/away3d/extrusions/data/Line.hx b/away3d/extrusions/data/Line.hx old mode 100755 new mode 100644 diff --git a/away3d/extrusions/data/RenderSide.hx b/away3d/extrusions/data/RenderSide.hx old mode 100755 new mode 100644 diff --git a/away3d/extrusions/data/SubGeometryList.hx b/away3d/extrusions/data/SubGeometryList.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/BloomFilter3D.hx b/away3d/filters/BloomFilter3D.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/BlurFilter3D.hx b/away3d/filters/BlurFilter3D.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/DepthOfFieldFilter3D.hx b/away3d/filters/DepthOfFieldFilter3D.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/Filter3DBase.hx b/away3d/filters/Filter3DBase.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/HBlurFilter3D.hx b/away3d/filters/HBlurFilter3D.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/HDepthOfFieldFilter3D.hx b/away3d/filters/HDepthOfFieldFilter3D.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/HueSaturationFilter3D.hx b/away3d/filters/HueSaturationFilter3D.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/MotionBlurFilter3D.hx b/away3d/filters/MotionBlurFilter3D.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/RadialBlurFilter3D.hx b/away3d/filters/RadialBlurFilter3D.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/VBlurFilter3D.hx b/away3d/filters/VBlurFilter3D.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/VDepthOfFieldFilter3D.hx b/away3d/filters/VDepthOfFieldFilter3D.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/tasks/Filter3DBloomCompositeTask.hx b/away3d/filters/tasks/Filter3DBloomCompositeTask.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/tasks/Filter3DBrightPassTask.hx b/away3d/filters/tasks/Filter3DBrightPassTask.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/tasks/Filter3DCompositeTask.hx b/away3d/filters/tasks/Filter3DCompositeTask.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/tasks/Filter3DDoubleBufferCopyTask.hx b/away3d/filters/tasks/Filter3DDoubleBufferCopyTask.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/tasks/Filter3DHBlurTask.hx b/away3d/filters/tasks/Filter3DHBlurTask.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/tasks/Filter3DHDepthOfFFieldTask.hx b/away3d/filters/tasks/Filter3DHDepthOfFFieldTask.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/tasks/Filter3DHueSaturationTask.hx b/away3d/filters/tasks/Filter3DHueSaturationTask.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/tasks/Filter3DRadialBlurTask.hx b/away3d/filters/tasks/Filter3DRadialBlurTask.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/tasks/Filter3DTaskBase.hx b/away3d/filters/tasks/Filter3DTaskBase.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/tasks/Filter3DVBlurTask.hx b/away3d/filters/tasks/Filter3DVBlurTask.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/tasks/Filter3DVDepthOfFFieldTask.hx b/away3d/filters/tasks/Filter3DVDepthOfFFieldTask.hx old mode 100755 new mode 100644 diff --git a/away3d/filters/tasks/Filter3DXFadeCompositeTask.hx b/away3d/filters/tasks/Filter3DXFadeCompositeTask.hx old mode 100755 new mode 100644 diff --git a/away3d/library/Asset3DLibrary.hx b/away3d/library/Asset3DLibrary.hx old mode 100755 new mode 100644 diff --git a/away3d/library/Asset3DLibraryBundle.hx b/away3d/library/Asset3DLibraryBundle.hx old mode 100755 new mode 100644 diff --git a/away3d/library/assets/Asset3DType.hx b/away3d/library/assets/Asset3DType.hx old mode 100755 new mode 100644 diff --git a/away3d/library/assets/BitmapDataAsset.hx b/away3d/library/assets/BitmapDataAsset.hx old mode 100755 new mode 100644 diff --git a/away3d/library/assets/IAsset.hx b/away3d/library/assets/IAsset.hx old mode 100755 new mode 100644 diff --git a/away3d/library/assets/NamedAssetBase.hx b/away3d/library/assets/NamedAssetBase.hx old mode 100755 new mode 100644 diff --git a/away3d/library/naming/ConflictPrecedence.hx b/away3d/library/naming/ConflictPrecedence.hx old mode 100755 new mode 100644 diff --git a/away3d/library/naming/ConflictStrategy.hx b/away3d/library/naming/ConflictStrategy.hx old mode 100755 new mode 100644 diff --git a/away3d/library/naming/ConflictStrategyBase.hx b/away3d/library/naming/ConflictStrategyBase.hx old mode 100755 new mode 100644 diff --git a/away3d/library/naming/ErrorConflictStrategy.hx b/away3d/library/naming/ErrorConflictStrategy.hx old mode 100755 new mode 100644 diff --git a/away3d/library/naming/IgnoreConflictStrategy.hx b/away3d/library/naming/IgnoreConflictStrategy.hx old mode 100755 new mode 100644 diff --git a/away3d/library/naming/NumSuffixConflictStrategy.hx b/away3d/library/naming/NumSuffixConflictStrategy.hx old mode 100755 new mode 100644 diff --git a/away3d/library/utils/Asset3DLibraryIterator.hx b/away3d/library/utils/Asset3DLibraryIterator.hx old mode 100755 new mode 100644 diff --git a/away3d/library/utils/IDUtil.hx b/away3d/library/utils/IDUtil.hx old mode 100755 new mode 100644 diff --git a/away3d/lights/DirectionalLight.hx b/away3d/lights/DirectionalLight.hx old mode 100755 new mode 100644 diff --git a/away3d/lights/LightBase.hx b/away3d/lights/LightBase.hx old mode 100755 new mode 100644 diff --git a/away3d/lights/LightProbe.hx b/away3d/lights/LightProbe.hx old mode 100755 new mode 100644 diff --git a/away3d/lights/PointLight.hx b/away3d/lights/PointLight.hx old mode 100755 new mode 100644 diff --git a/away3d/lights/shadowmaps/CascadeShadowMapper.hx b/away3d/lights/shadowmaps/CascadeShadowMapper.hx old mode 100755 new mode 100644 diff --git a/away3d/lights/shadowmaps/CubeMapShadowMapper.hx b/away3d/lights/shadowmaps/CubeMapShadowMapper.hx old mode 100755 new mode 100644 diff --git a/away3d/lights/shadowmaps/DirectionalShadowMapper.hx b/away3d/lights/shadowmaps/DirectionalShadowMapper.hx old mode 100755 new mode 100644 diff --git a/away3d/lights/shadowmaps/NearDirectionalShadowMapper.hx b/away3d/lights/shadowmaps/NearDirectionalShadowMapper.hx old mode 100755 new mode 100644 diff --git a/away3d/lights/shadowmaps/ShadowMapperBase.hx b/away3d/lights/shadowmaps/ShadowMapperBase.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/AssetLoader.hx b/away3d/loaders/AssetLoader.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/Loader3D.hx b/away3d/loaders/Loader3D.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/misc/AssetLoaderContext.hx b/away3d/loaders/misc/AssetLoaderContext.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/misc/AssetLoaderToken.hx b/away3d/loaders/misc/AssetLoaderToken.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/misc/ResourceDependency.hx b/away3d/loaders/misc/ResourceDependency.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/misc/SingleFileLoader.hx b/away3d/loaders/misc/SingleFileLoader.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/AC3DParser.hx b/away3d/loaders/parsers/AC3DParser.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/AWD1Parser.hx b/away3d/loaders/parsers/AWD1Parser.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/AWD2Parser.hx b/away3d/loaders/parsers/AWD2Parser.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/AWDParser.hx b/away3d/loaders/parsers/AWDParser.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/DAEParser.hx b/away3d/loaders/parsers/DAEParser.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/DXFParser.hx b/away3d/loaders/parsers/DXFParser.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/ImageParser.hx b/away3d/loaders/parsers/ImageParser.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/MD2Parser.hx b/away3d/loaders/parsers/MD2Parser.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/MD5AnimParser.hx b/away3d/loaders/parsers/MD5AnimParser.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/MD5MeshParser.hx b/away3d/loaders/parsers/MD5MeshParser.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/Max3DSParser.hx b/away3d/loaders/parsers/Max3DSParser.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/OBJParser.hx b/away3d/loaders/parsers/OBJParser.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/ParserBase.hx b/away3d/loaders/parsers/ParserBase.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/ParserDataFormat.hx b/away3d/loaders/parsers/ParserDataFormat.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/Parsers.hx b/away3d/loaders/parsers/Parsers.hx old mode 100755 new mode 100644 diff --git a/away3d/loaders/parsers/utils/ParserUtil.hx b/away3d/loaders/parsers/utils/ParserUtil.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/ColorMaterial.hx b/away3d/materials/ColorMaterial.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/ColorMultiPassMaterial.hx b/away3d/materials/ColorMultiPassMaterial.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/LightSources.hx b/away3d/materials/LightSources.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/MaterialBase.hx b/away3d/materials/MaterialBase.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/MultiPassMaterialBase.hx b/away3d/materials/MultiPassMaterialBase.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/OcclusionMaterial.hx b/away3d/materials/OcclusionMaterial.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/SegmentMaterial.hx b/away3d/materials/SegmentMaterial.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/SinglePassMaterialBase.hx b/away3d/materials/SinglePassMaterialBase.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/SkyBoxMaterial.hx b/away3d/materials/SkyBoxMaterial.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/SpriteSheetMaterial.hx b/away3d/materials/SpriteSheetMaterial.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/TextureMaterial.hx b/away3d/materials/TextureMaterial.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/TextureMultiPassMaterial.hx b/away3d/materials/TextureMultiPassMaterial.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/compilation/LightingShaderCompiler.hx b/away3d/materials/compilation/LightingShaderCompiler.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/compilation/MethodDependencyCounter.hx b/away3d/materials/compilation/MethodDependencyCounter.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/compilation/RegisterPool.hx b/away3d/materials/compilation/RegisterPool.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/compilation/ShaderCompiler.hx b/away3d/materials/compilation/ShaderCompiler.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/compilation/ShaderRegisterCache.hx b/away3d/materials/compilation/ShaderRegisterCache.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/compilation/ShaderRegisterData.hx b/away3d/materials/compilation/ShaderRegisterData.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/compilation/ShaderRegisterElement.hx b/away3d/materials/compilation/ShaderRegisterElement.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/compilation/SuperShaderCompiler.hx b/away3d/materials/compilation/SuperShaderCompiler.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/lightpickers/LightPickerBase.hx b/away3d/materials/lightpickers/LightPickerBase.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/lightpickers/StaticLightPicker.hx b/away3d/materials/lightpickers/StaticLightPicker.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/AlphaMaskMethod.hx b/away3d/materials/methods/AlphaMaskMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/AnisotropicSpecularMethod.hx b/away3d/materials/methods/AnisotropicSpecularMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/BasicAmbientMethod.hx b/away3d/materials/methods/BasicAmbientMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/BasicDiffuseMethod.hx b/away3d/materials/methods/BasicDiffuseMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/BasicNormalMethod.hx b/away3d/materials/methods/BasicNormalMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/BasicSpecularMethod.hx b/away3d/materials/methods/BasicSpecularMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/CascadeShadowMapMethod.hx b/away3d/materials/methods/CascadeShadowMapMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/CelDiffuseMethod.hx b/away3d/materials/methods/CelDiffuseMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/CelSpecularMethod.hx b/away3d/materials/methods/CelSpecularMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/ColorMatrixMethod.hx b/away3d/materials/methods/ColorMatrixMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/ColorTransformMethod.hx b/away3d/materials/methods/ColorTransformMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/CompositeDiffuseMethod.hx b/away3d/materials/methods/CompositeDiffuseMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/CompositeSpecularMethod.hx b/away3d/materials/methods/CompositeSpecularMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/DepthDiffuseMethod.hx b/away3d/materials/methods/DepthDiffuseMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/DitheredShadowMapMethod.hx b/away3d/materials/methods/DitheredShadowMapMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/EffectMethodBase.hx b/away3d/materials/methods/EffectMethodBase.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/EnvMapAmbientMethod.hx b/away3d/materials/methods/EnvMapAmbientMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/EnvMapMethod.hx b/away3d/materials/methods/EnvMapMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/FilteredShadowMapMethod.hx b/away3d/materials/methods/FilteredShadowMapMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/FogMethod.hx b/away3d/materials/methods/FogMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/FresnelEnvMapMethod.hx b/away3d/materials/methods/FresnelEnvMapMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/FresnelPlanarReflectionMethod.hx b/away3d/materials/methods/FresnelPlanarReflectionMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/FresnelSpecularMethod.hx b/away3d/materials/methods/FresnelSpecularMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/GradientDiffuseMethod.hx b/away3d/materials/methods/GradientDiffuseMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/HardShadowMapMethod.hx b/away3d/materials/methods/HardShadowMapMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/HeightMapNormalMethod.hx b/away3d/materials/methods/HeightMapNormalMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/LightMapDiffuseMethod.hx b/away3d/materials/methods/LightMapDiffuseMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/LightMapMethod.hx b/away3d/materials/methods/LightMapMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/LightingMethodBase.hx b/away3d/materials/methods/LightingMethodBase.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/MethodVO.hx b/away3d/materials/methods/MethodVO.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/MethodVOSet.hx b/away3d/materials/methods/MethodVOSet.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/NearShadowMapMethod.hx b/away3d/materials/methods/NearShadowMapMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/OutlineMethod.hx b/away3d/materials/methods/OutlineMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/PhongSpecularMethod.hx b/away3d/materials/methods/PhongSpecularMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/PlanarReflectionMethod.hx b/away3d/materials/methods/PlanarReflectionMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/ProjectiveTextureMethod.hx b/away3d/materials/methods/ProjectiveTextureMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/RefractionEnvMapMethod.hx b/away3d/materials/methods/RefractionEnvMapMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/RimLightMethod.hx b/away3d/materials/methods/RimLightMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/ShaderMethodSetup.hx b/away3d/materials/methods/ShaderMethodSetup.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/ShadingMethodBase.hx b/away3d/materials/methods/ShadingMethodBase.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/ShadowMapMethodBase.hx b/away3d/materials/methods/ShadowMapMethodBase.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/SimpleShadowMapMethodBase.hx b/away3d/materials/methods/SimpleShadowMapMethodBase.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/SimpleWaterNormalMethod.hx b/away3d/materials/methods/SimpleWaterNormalMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/SoftShadowMapMethod.hx b/away3d/materials/methods/SoftShadowMapMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/SubsurfaceScatteringDiffuseMethod.hx b/away3d/materials/methods/SubsurfaceScatteringDiffuseMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/TerrainDiffuseMethod.hx b/away3d/materials/methods/TerrainDiffuseMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/TripleFilteredShadowMapMethod.hx b/away3d/materials/methods/TripleFilteredShadowMapMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/methods/WrapDiffuseMethod.hx b/away3d/materials/methods/WrapDiffuseMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/passes/CompiledPass.hx b/away3d/materials/passes/CompiledPass.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/passes/DepthMapPass.hx b/away3d/materials/passes/DepthMapPass.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/passes/DistanceMapPass.hx b/away3d/materials/passes/DistanceMapPass.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/passes/LightingPass.hx b/away3d/materials/passes/LightingPass.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/passes/MaterialPassBase.hx b/away3d/materials/passes/MaterialPassBase.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/passes/OutlinePass.hx b/away3d/materials/passes/OutlinePass.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/passes/SegmentPass.hx b/away3d/materials/passes/SegmentPass.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/passes/ShadowCasterPass.hx b/away3d/materials/passes/ShadowCasterPass.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/passes/SingleObjectDepthPass.hx b/away3d/materials/passes/SingleObjectDepthPass.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/passes/SkyBoxPass.hx b/away3d/materials/passes/SkyBoxPass.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/passes/SuperShaderPass.hx b/away3d/materials/passes/SuperShaderPass.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/utils/DefaultMaterialManager.hx b/away3d/materials/utils/DefaultMaterialManager.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/utils/IVideoPlayer.hx b/away3d/materials/utils/IVideoPlayer.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/utils/MipmapGenerator.hx b/away3d/materials/utils/MipmapGenerator.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/utils/MultipleMaterials.hx b/away3d/materials/utils/MultipleMaterials.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/utils/SimpleVideoPlayer.hx b/away3d/materials/utils/SimpleVideoPlayer.hx old mode 100755 new mode 100644 diff --git a/away3d/materials/utils/WireframeMapGenerator.hx b/away3d/materials/utils/WireframeMapGenerator.hx old mode 100755 new mode 100644 diff --git a/away3d/paths/CubicPath.hx b/away3d/paths/CubicPath.hx old mode 100755 new mode 100644 diff --git a/away3d/paths/CubicPathSegment.hx b/away3d/paths/CubicPathSegment.hx old mode 100755 new mode 100644 diff --git a/away3d/paths/IPath.hx b/away3d/paths/IPath.hx old mode 100755 new mode 100644 diff --git a/away3d/paths/IPathSegment.hx b/away3d/paths/IPathSegment.hx old mode 100755 new mode 100644 diff --git a/away3d/paths/QuadraticPath.hx b/away3d/paths/QuadraticPath.hx old mode 100755 new mode 100644 diff --git a/away3d/paths/QuadraticPathSegment.hx b/away3d/paths/QuadraticPathSegment.hx old mode 100755 new mode 100644 diff --git a/away3d/paths/SegmentedPathBase.hx b/away3d/paths/SegmentedPathBase.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/CapsuleGeometry.hx b/away3d/primitives/CapsuleGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/ConeGeometry.hx b/away3d/primitives/ConeGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/CubeGeometry.hx b/away3d/primitives/CubeGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/CylinderGeometry.hx b/away3d/primitives/CylinderGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/LineSegment.hx b/away3d/primitives/LineSegment.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/NURBSGeometry.hx b/away3d/primitives/NURBSGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/PlaneGeometry.hx b/away3d/primitives/PlaneGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/PrimitiveBase.hx b/away3d/primitives/PrimitiveBase.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/RegularPolygonGeometry.hx b/away3d/primitives/RegularPolygonGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/SkyBox.hx b/away3d/primitives/SkyBox.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/SphereGeometry.hx b/away3d/primitives/SphereGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/TorusGeometry.hx b/away3d/primitives/TorusGeometry.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/WireframeCube.hx b/away3d/primitives/WireframeCube.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/WireframeCylinder.hx b/away3d/primitives/WireframeCylinder.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/WireframePlane.hx b/away3d/primitives/WireframePlane.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/WireframePrimitiveBase.hx b/away3d/primitives/WireframePrimitiveBase.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/WireframeRegularPolygon.hx b/away3d/primitives/WireframeRegularPolygon.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/WireframeSphere.hx b/away3d/primitives/WireframeSphere.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/WireframeTetrahedron.hx b/away3d/primitives/WireframeTetrahedron.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/data/NURBSVertex.hx b/away3d/primitives/data/NURBSVertex.hx old mode 100755 new mode 100644 diff --git a/away3d/primitives/data/Segment.hx b/away3d/primitives/data/Segment.hx old mode 100755 new mode 100644 diff --git a/away3d/stereo/StereoCamera3D.hx b/away3d/stereo/StereoCamera3D.hx old mode 100755 new mode 100644 diff --git a/away3d/stereo/StereoRenderer.hx b/away3d/stereo/StereoRenderer.hx old mode 100755 new mode 100644 diff --git a/away3d/stereo/StereoView3D.hx b/away3d/stereo/StereoView3D.hx old mode 100755 new mode 100644 diff --git a/away3d/stereo/methods/AnaglyphStereoRenderMethod.hx b/away3d/stereo/methods/AnaglyphStereoRenderMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/stereo/methods/InterleavedStereoRenderMethod.hx b/away3d/stereo/methods/InterleavedStereoRenderMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/stereo/methods/SBSStereoRenderMethod.hx b/away3d/stereo/methods/SBSStereoRenderMethod.hx old mode 100755 new mode 100644 diff --git a/away3d/stereo/methods/StereoRenderMethodBase.hx b/away3d/stereo/methods/StereoRenderMethodBase.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/ATFCubeTexture.hx b/away3d/textures/ATFCubeTexture.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/ATFData.hx b/away3d/textures/ATFData.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/ATFTexture.hx b/away3d/textures/ATFTexture.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/Anisotropy.hx b/away3d/textures/Anisotropy.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/BitmapCubeTexture.hx b/away3d/textures/BitmapCubeTexture.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/BitmapTexture.hx b/away3d/textures/BitmapTexture.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/BitmapTextureCache.hx b/away3d/textures/BitmapTextureCache.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/CubeReflectionTexture.hx b/away3d/textures/CubeReflectionTexture.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/CubeTextureBase.hx b/away3d/textures/CubeTextureBase.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/PlanarReflectionTexture.hx b/away3d/textures/PlanarReflectionTexture.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/RenderCubeTexture.hx b/away3d/textures/RenderCubeTexture.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/RenderTexture.hx b/away3d/textures/RenderTexture.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/SpecularBitmapTexture.hx b/away3d/textures/SpecularBitmapTexture.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/Texture2DBase.hx b/away3d/textures/Texture2DBase.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/TextureProxyBase.hx b/away3d/textures/TextureProxyBase.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/VideoTexture.hx b/away3d/textures/VideoTexture.hx old mode 100755 new mode 100644 diff --git a/away3d/textures/WebcamTexture.hx b/away3d/textures/WebcamTexture.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/commands/Align.hx b/away3d/tools/commands/Align.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/commands/Explode.hx b/away3d/tools/commands/Explode.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/commands/Merge.hx b/away3d/tools/commands/Merge.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/commands/Mirror.hx b/away3d/tools/commands/Mirror.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/commands/SphereMaker.hx b/away3d/tools/commands/SphereMaker.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/commands/Weld.hx b/away3d/tools/commands/Weld.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/helpers/FaceHelper.hx b/away3d/tools/helpers/FaceHelper.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/helpers/LightsHelper.hx b/away3d/tools/helpers/LightsHelper.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/helpers/MeshDebugger.hx b/away3d/tools/helpers/MeshDebugger.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/helpers/MeshHelper.hx b/away3d/tools/helpers/MeshHelper.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/helpers/ParticleGeometryHelper.hx b/away3d/tools/helpers/ParticleGeometryHelper.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/helpers/SpriteSheetHelper.hx b/away3d/tools/helpers/SpriteSheetHelper.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/helpers/data/MeshDebug.hx b/away3d/tools/helpers/data/MeshDebug.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/helpers/data/ParticleGeometryTransform.hx b/away3d/tools/helpers/data/ParticleGeometryTransform.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/serialize/Serialize.hx b/away3d/tools/serialize/Serialize.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/serialize/SerializerBase.hx b/away3d/tools/serialize/SerializerBase.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/serialize/TraceSerializer.hx b/away3d/tools/serialize/TraceSerializer.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/utils/Bounds.hx b/away3d/tools/utils/Bounds.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/utils/ColorHitMap.hx b/away3d/tools/utils/ColorHitMap.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/utils/Drag3D.hx b/away3d/tools/utils/Drag3D.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/utils/GeomUtil.hx b/away3d/tools/utils/GeomUtil.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/utils/Grid.hx b/away3d/tools/utils/Grid.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/utils/Projector.hx b/away3d/tools/utils/Projector.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/utils/Ray.hx b/away3d/tools/utils/Ray.hx old mode 100755 new mode 100644 diff --git a/away3d/tools/utils/TextureUtils.hx b/away3d/tools/utils/TextureUtils.hx old mode 100755 new mode 100644 diff --git a/away3d/utils/Cast.hx b/away3d/utils/Cast.hx old mode 100755 new mode 100644 diff --git a/haxelib.json b/haxelib.json old mode 100755 new mode 100644 diff --git a/include.xml b/include.xml old mode 100755 new mode 100644