├── .gitignore ├── Documentation~ └── UnityToCustomEngineExporter.md ├── Editor.meta ├── Editor ├── AbstractDestinationEngine.cs ├── AbstractDestinationEngine.cs.meta ├── AbstractMeshSource.cs ├── AbstractMeshSource.cs.meta ├── AnimationCurveAdapterBase.cs ├── AnimationCurveAdapterBase.cs.meta ├── AssetKey.cs ├── AssetKey.cs.meta ├── AssetNameCollisionResolver.cs ├── AssetNameCollisionResolver.cs.meta ├── AutodeskInteractiveShaderArguments.cs ├── AutodeskInteractiveShaderArguments.cs.meta ├── BoolEditorProperty.cs ├── BoolEditorProperty.cs.meta ├── DDS.cs ├── DDS.cs.meta ├── DecalDecalProjector.cs ├── DecalDecalProjector.cs.meta ├── EditorTaskScheduler.cs ├── EditorTaskScheduler.cs.meta ├── EliminateNegativeScale.cs ├── EliminateNegativeScale.cs.meta ├── EulerAnglesAnimationCurveAdapter.cs ├── EulerAnglesAnimationCurveAdapter.cs.meta ├── ExportOptions.cs ├── ExportOptions.cs.meta ├── ExportTerrain.cs ├── ExportTerrain.cs.meta ├── ExportUtils.cs ├── ExportUtils.cs.meta ├── ExtensionMethods.cs ├── ExtensionMethods.cs.meta ├── IAnimationCurveAdapter.cs ├── IAnimationCurveAdapter.cs.meta ├── IDestinationEngine.cs ├── IDestinationEngine.cs.meta ├── IUrhoModelSource.cs ├── IUrhoModelSource.cs.meta ├── LODGroupSource.cs ├── LODGroupSource.cs.meta ├── LegacyShaderArguments.cs ├── LegacyShaderArguments.cs.meta ├── MeshSource.cs ├── MeshSource.cs.meta ├── MetallicGlossinessShaderArguments.cs ├── MetallicGlossinessShaderArguments.cs.meta ├── NavMeshSource.cs ├── NavMeshSource.cs.meta ├── PBRUtils.cs ├── PBRUtils.cs.meta ├── ProBuilderMeshSource.cs ├── ProBuilderMeshSource.cs.meta ├── ProgressBarReport.cs ├── ProgressBarReport.cs.meta ├── QuaternionAnimationCurveAdapter.cs ├── QuaternionAnimationCurveAdapter.cs.meta ├── RearrangeAssets.cs ├── RearrangeAssets.cs.meta ├── ReflectionProxy.cs ├── ReflectionProxy.cs.meta ├── ResolveNameCollisions.cs ├── ResolveNameCollisions.cs.meta ├── SaveOnCloseStream.cs ├── SaveOnCloseStream.cs.meta ├── SequenceReader.cs ├── SequenceReader.cs.meta ├── ShaderArguments.cs ├── ShaderArguments.cs.meta ├── SkyboxShaderArguments.cs ├── SkyboxShaderArguments.cs.meta ├── SmoothnessTextureChannel.cs ├── SmoothnessTextureChannel.cs.meta ├── SpecularGlossinessShaderArguments.cs ├── SpecularGlossinessShaderArguments.cs.meta ├── StbSharpDxt.meta ├── StbSharpDxt │ ├── CompressionMode.cs │ ├── CompressionMode.cs.meta │ ├── StbDxt.cs │ └── StbDxt.cs.meta ├── TextureOptions.cs ├── TextureOptions.cs.meta ├── TextureOrColor.cs ├── TextureOrColor.cs.meta ├── TextureProcessor.cs ├── TextureProcessor.cs.meta ├── Unity.UnityToCustomEngineExporter.Editor.asmdef ├── Unity.UnityToCustomEngineExporter.Editor.asmdef.meta ├── Urho3D.meta ├── Urho3D │ ├── AbstractBinaryExpoerter.cs │ ├── AbstractBinaryExpoerter.cs.meta │ ├── AbstractMaterialExporter.cs │ ├── AbstractMaterialExporter.cs.meta │ ├── AmplifyMaterialExporter.cs │ ├── AmplifyMaterialExporter.cs.meta │ ├── AmplifyShaderExporter.cs │ ├── AmplifyShaderExporter.cs.meta │ ├── AnimationControllerExporter.cs │ ├── AnimationControllerExporter.cs.meta │ ├── AnimationExporter.cs │ ├── AnimationExporter.cs.meta │ ├── AudioExporter.cs │ ├── AudioExporter.cs.meta │ ├── BaseNodeExporter.cs │ ├── BaseNodeExporter.cs.meta │ ├── ContentAssets.meta │ ├── ContentAssets │ │ ├── Resources.meta │ │ └── Resources │ │ │ ├── unity_builtin_extra.meta │ │ │ └── unity_builtin_extra │ │ │ ├── Default-Material.xml │ │ │ ├── Default-Material.xml.meta │ │ │ ├── Default-Skybox-Map.dds │ │ │ ├── Default-Skybox-Map.dds.meta │ │ │ ├── Default-Skybox-Map.xml │ │ │ ├── Default-Skybox-Map.xml.meta │ │ │ ├── Default-Skybox.xml │ │ │ └── Default-Skybox.xml.meta │ ├── CubemapExporter.cs │ ├── CubemapExporter.cs.meta │ ├── CustomUrho3DExporterAttribute.cs │ ├── CustomUrho3DExporterAttribute.cs.meta │ ├── DestinationFolder.cs │ ├── DestinationFolder.cs.meta │ ├── DistortionMaterialExporter.cs │ ├── DistortionMaterialExporter.cs.meta │ ├── EngineAssets.meta │ ├── EngineAssets │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Occluder.xml │ │ │ └── Occluder.xml.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── GLSL.meta │ │ │ ├── GLSL │ │ │ │ ├── BRDF.glsl │ │ │ │ ├── BRDF.glsl.meta │ │ │ │ ├── PBRLitSolid.glsl │ │ │ │ ├── PBRLitSolid.glsl.meta │ │ │ │ ├── PBRTerrainBlend.glsl │ │ │ │ ├── PBRTerrainBlend.glsl.meta │ │ │ │ ├── PBRVegetation.glsl │ │ │ │ ├── PBRVegetation.glsl.meta │ │ │ │ ├── PBRWater.glsl │ │ │ │ ├── PBRWater.glsl.meta │ │ │ │ ├── Skybox.glsl │ │ │ │ ├── Skybox.glsl.meta │ │ │ │ ├── TerrainBlend.glsl │ │ │ │ ├── TerrainBlend.glsl.meta │ │ │ │ ├── Vegetation.glsl │ │ │ │ ├── Vegetation.glsl.meta │ │ │ │ ├── VegetationDepth.glsl │ │ │ │ ├── VegetationDepth.glsl.meta │ │ │ │ ├── VegetationShadow.glsl │ │ │ │ └── VegetationShadow.glsl.meta │ │ │ ├── HLSL.meta │ │ │ └── HLSL │ │ │ │ ├── BRDF.hlsl │ │ │ │ ├── BRDF.hlsl.meta │ │ │ │ ├── PBRLitSolid.hlsl │ │ │ │ ├── PBRLitSolid.hlsl.meta │ │ │ │ ├── PBRTerrainBlend.hlsl │ │ │ │ ├── PBRTerrainBlend.hlsl.meta │ │ │ │ ├── PBRVegetation.hlsl │ │ │ │ ├── PBRVegetation.hlsl.meta │ │ │ │ ├── PBRWater.hlsl │ │ │ │ ├── PBRWater.hlsl.meta │ │ │ │ ├── Skybox.hlsl │ │ │ │ ├── Skybox.hlsl.meta │ │ │ │ ├── Vegetation.hlsl │ │ │ │ ├── Vegetation.hlsl.meta │ │ │ │ ├── VegetationDepth.hlsl │ │ │ │ ├── VegetationDepth.hlsl.meta │ │ │ │ ├── VegetationShadow.hlsl │ │ │ │ └── VegetationShadow.hlsl.meta │ │ ├── Techniques.meta │ │ └── Techniques │ │ │ ├── Occluder.xml │ │ │ └── Occluder.xml.meta │ ├── ExtensionMethods.cs │ ├── ExtensionMethods.cs.meta │ ├── Graph.meta │ ├── Graph │ │ ├── GraphCurve.cs │ │ ├── GraphCurve.cs.meta │ │ ├── GraphEnterPin.cs │ │ ├── GraphEnterPin.cs.meta │ │ ├── GraphExitPin.cs │ │ ├── GraphExitPin.cs.meta │ │ ├── GraphInPin.cs │ │ ├── GraphInPin.cs.meta │ │ ├── GraphNode.cs │ │ ├── GraphNode.cs.meta │ │ ├── GraphNodeProperty.cs │ │ ├── GraphNodeProperty.cs.meta │ │ ├── GraphNodeType.cs │ │ ├── GraphNodeType.cs.meta │ │ ├── GraphOutPin.cs │ │ ├── GraphOutPin.cs.meta │ │ ├── GraphPin.cs │ │ ├── GraphPin.cs.meta │ │ ├── GraphResource.cs │ │ ├── GraphResource.cs.meta │ │ ├── IGraphElement.cs │ │ ├── IGraphElement.cs.meta │ │ ├── IValueFormatter.cs │ │ ├── IValueFormatter.cs.meta │ │ ├── PinList.cs │ │ ├── PinList.cs.meta │ │ ├── ValueFormatter.cs │ │ ├── ValueFormatter.cs.meta │ │ ├── VariantType.cs │ │ └── VariantType.cs.meta │ ├── HDRPDecalMaterialExporter.cs │ ├── HDRPDecalMaterialExporter.cs.meta │ ├── HDRPMaterialExporter.cs │ ├── HDRPMaterialExporter.cs.meta │ ├── IUrho3DMaterialExporter.cs │ ├── IUrho3DMaterialExporter.cs.meta │ ├── LegacyTechniqueFlags.cs │ ├── LegacyTechniqueFlags.cs.meta │ ├── MaterialExporter.cs │ ├── MaterialExporter.cs.meta │ ├── MaterialExporters.meta │ ├── MaterialExporters │ │ ├── AutodeskInteractiveExporter.cs │ │ ├── AutodeskInteractiveExporter.cs.meta │ │ ├── LegacyMaterialExporter.cs │ │ ├── LegacyMaterialExporter.cs.meta │ │ ├── NatureManufactureWaterMaterialExporter.cs │ │ ├── NatureManufactureWaterMaterialExporter.cs.meta │ │ ├── PBRWaterMaterialExporter.cs │ │ ├── PBRWaterMaterialExporter.cs.meta │ │ ├── SkyboxMaterialExporter.cs │ │ ├── SkyboxMaterialExporter.cs.meta │ │ ├── StandardMaterialExporter.cs │ │ ├── StandardMaterialExporter.cs.meta │ │ ├── StandardSpecularMaterialExporter.cs │ │ ├── StandardSpecularMaterialExporter.cs.meta │ │ ├── TreeCreatorMaterialExporter.cs │ │ ├── TreeCreatorMaterialExporter.cs.meta │ │ ├── VegetationMaterialExporter.cs │ │ ├── VegetationMaterialExporter.cs.meta │ │ ├── WaterMaterialExporter.cs │ │ └── WaterMaterialExporter.cs.meta │ ├── MeshExporter.cs │ ├── MeshExporter.cs.meta │ ├── ParticleExporter.cs │ ├── ParticleExporter.cs.meta │ ├── ParticleGraph.meta │ ├── ParticleGraph │ │ ├── FaceCameraMode.cs │ │ ├── FaceCameraMode.cs.meta │ │ ├── GraphExpressionVisitor.cs │ │ ├── GraphExpressionVisitor.cs.meta │ │ ├── ParticleGraphBuilder.cs │ │ ├── ParticleGraphBuilder.cs.meta │ │ ├── ParticleGraphEffect.cs │ │ ├── ParticleGraphEffect.cs.meta │ │ ├── ParticleGraphEmitBuilder.cs │ │ ├── ParticleGraphEmitBuilder.cs.meta │ │ ├── ParticleGraphInitUpdateBuilder.cs │ │ ├── ParticleGraphInitUpdateBuilder.cs.meta │ │ ├── ParticleGraphLayer.cs │ │ ├── ParticleGraphLayer.cs.meta │ │ ├── ParticleNodes.meta │ │ └── ParticleNodes │ │ │ ├── Add.cs │ │ │ ├── Add.cs.meta │ │ │ ├── ApplyForce.cs │ │ │ ├── ApplyForce.cs.meta │ │ │ ├── BinaryOperator.cs │ │ │ ├── BinaryOperator.cs.meta │ │ │ ├── Bounce.cs │ │ │ ├── Bounce.cs.meta │ │ │ ├── Box.cs │ │ │ ├── Box.cs.meta │ │ │ ├── Break.cs │ │ │ ├── Break.cs.meta │ │ │ ├── BurstTimer.cs │ │ │ ├── BurstTimer.cs.meta │ │ │ ├── Cast.cs │ │ │ ├── Cast.cs.meta │ │ │ ├── Circle.cs │ │ │ ├── Circle.cs.meta │ │ │ ├── Cone.cs │ │ │ ├── Cone.cs.meta │ │ │ ├── CurlNoise3D.cs │ │ │ ├── CurlNoise3D.cs.meta │ │ │ ├── Destroy.cs │ │ │ ├── Destroy.cs.meta │ │ │ ├── Divide.cs │ │ │ ├── Divide.cs.meta │ │ │ ├── EffectTime.cs │ │ │ ├── EffectTime.cs.meta │ │ │ ├── Emit.cs │ │ │ ├── Emit.cs.meta │ │ │ ├── EmitFrom.cs │ │ │ ├── EmitFrom.cs.meta │ │ │ ├── Expire.cs │ │ │ ├── Expire.cs.meta │ │ │ ├── GetAttribute.cs │ │ │ ├── GetAttribute.cs.meta │ │ │ ├── Hemisphere.cs │ │ │ ├── Hemisphere.cs.meta │ │ │ ├── Length.cs │ │ │ ├── Length.cs.meta │ │ │ ├── Lerp.cs │ │ │ ├── Lerp.cs.meta │ │ │ ├── LimitVelocity.cs │ │ │ ├── LimitVelocity.cs.meta │ │ │ ├── Make.cs │ │ │ ├── Make.cs.meta │ │ │ ├── Move.cs │ │ │ ├── Move.cs.meta │ │ │ ├── Multiply.cs │ │ │ ├── Multiply.cs.meta │ │ │ ├── Negate.cs │ │ │ ├── Negate.cs.meta │ │ │ ├── Noise3D.cs │ │ │ ├── Noise3D.cs.meta │ │ │ ├── Normalized.cs │ │ │ ├── Normalized.cs.meta │ │ │ ├── NormalizedEffectTime.cs │ │ │ ├── NormalizedEffectTime.cs.meta │ │ │ ├── Random.cs │ │ │ ├── Random.cs.meta │ │ │ ├── RenderBillboard.cs │ │ │ ├── RenderBillboard.cs.meta │ │ │ ├── RenderMesh.cs │ │ │ ├── RenderMesh.cs.meta │ │ │ ├── ResourceRef.cs │ │ │ ├── ResourceRef.cs.meta │ │ │ ├── ResourceRefList.cs │ │ │ ├── ResourceRefList.cs.meta │ │ │ ├── SetAttribute.cs │ │ │ ├── SetAttribute.cs.meta │ │ │ ├── Slerp.cs │ │ │ ├── Slerp.cs.meta │ │ │ ├── Sphere.cs │ │ │ ├── Sphere.cs.meta │ │ │ ├── Subtract.cs │ │ │ ├── Subtract.cs.meta │ │ │ ├── TimeStep.cs │ │ │ ├── TimeStep.cs.meta │ │ │ ├── TimeStepScale.cs │ │ │ └── TimeStepScale.cs.meta │ ├── ParticleGraphExporter.cs │ ├── ParticleGraphExporter.cs.meta │ ├── ParticleStandardUnlitMaterialExporter.cs │ ├── ParticleStandardUnlitMaterialExporter.cs.meta │ ├── PrefabContext.cs │ ├── PrefabContext.cs.meta │ ├── PrefabExporter.cs │ ├── PrefabExporter.cs.meta │ ├── PrimitiveType.cs │ ├── PrimitiveType.cs.meta │ ├── ProBuilder.meta │ ├── ProBuilder │ │ ├── ProBuilderMeshAdapter.cs │ │ └── ProBuilderMeshAdapter.cs.meta │ ├── SceneExporter.cs │ ├── SceneExporter.cs.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── CombineMetallicRoughnessOcclusion.shader │ │ ├── CombineMetallicRoughnessOcclusion.shader.meta │ │ ├── ConvertSpecularToMetallicRoughness.shader │ │ ├── ConvertSpecularToMetallicRoughness.shader.meta │ │ ├── ConvertToBaseColor.shader │ │ ├── ConvertToBaseColor.shader.meta │ │ ├── ConvertToMetallicRoughness.shader │ │ ├── ConvertToMetallicRoughness.shader.meta │ │ ├── Copy.shader │ │ ├── Copy.shader.meta │ │ ├── DecodeCompressedNormalMap.shader │ │ ├── DecodeCompressedNormalMap.shader.meta │ │ ├── DecodeNormalMap.shader │ │ ├── DecodeNormalMap.shader.meta │ │ ├── DecodeNormalMapPackedNormal.shader │ │ ├── DecodeNormalMapPackedNormal.shader.meta │ │ ├── PBRUtils.cginc │ │ ├── PBRUtils.cginc.meta │ │ ├── PremultiplyOcclusionStrength.shader │ │ └── PremultiplyOcclusionStrength.shader.meta │ ├── SyntyStudiosBlooodExporter.cs │ ├── SyntyStudiosBlooodExporter.cs.meta │ ├── Technique.cs │ ├── Technique.cs.meta │ ├── TerrainExporter.cs │ ├── TerrainExporter.cs.meta │ ├── TextureExporter.cs │ ├── TextureExporter.cs.meta │ ├── Urho3DCulling.cs │ ├── Urho3DCulling.cs.meta │ ├── Urho3DEngine.cs │ ├── Urho3DEngine.cs.meta │ ├── Urho3DExportOptions.cs │ ├── Urho3DExportOptions.cs.meta │ ├── UrhoAnimationTrack.cs │ ├── UrhoAnimationTrack.cs.meta │ ├── UrhoConstraint.cs │ ├── UrhoConstraint.cs.meta │ ├── UrhoPBRMaterial.cs │ ├── UrhoPBRMaterial.cs.meta │ ├── VertexElementSemantic.cs │ ├── VertexElementSemantic.cs.meta │ ├── VertexElementType.cs │ └── VertexElementType.cs.meta ├── Vector3AnimationCurveAdapter.cs └── Vector3AnimationCurveAdapter.cs.meta ├── LICENSE ├── LICENSE.meta ├── README.md ├── README.md.meta ├── Runtime.meta ├── Runtime ├── Unity.UnityToCustomEngineExporter.asmdef ├── Unity.UnityToCustomEngineExporter.asmdef.meta ├── Urho3D.meta └── Urho3D │ ├── IUrho3DComponent.cs │ ├── IUrho3DComponent.cs.meta │ ├── LitOpaque.shader │ ├── LitOpaque.shader.meta │ ├── LitOpaqueAmp.shader │ ├── LitOpaqueAmp.shader.meta │ ├── LitTransparent.shader │ ├── LitTransparent.shader.meta │ ├── PBRVegetation.shader │ ├── PBRVegetation.shader.meta │ ├── PBRWater.shader │ ├── PBRWater.shader.meta │ ├── Skybox.shader │ ├── Skybox.shader.meta │ ├── Urho3DAttribute.cs │ ├── Urho3DAttribute.cs.meta │ ├── Water.shader │ └── Water.shader.meta ├── Source.meta ├── Source └── Urho3D.meta ├── Tests.meta ├── Tests ├── Editor.meta └── Editor │ ├── ExportUtilsTests.cs │ ├── ExportUtilsTests.cs.meta │ ├── PBRUtilsTests.cs │ ├── PBRUtilsTests.cs.meta │ ├── StbDxtTests.cs │ ├── StbDxtTests.cs.meta │ ├── TextureProcessorTests.cs │ ├── TextureProcessorTests.cs.meta │ ├── Textures.meta │ ├── Textures │ ├── linear_no_color_profile.png │ ├── linear_no_color_profile.png.meta │ ├── normal.png │ ├── normal.png.meta │ ├── srgb_no_color_profile.png │ ├── srgb_no_color_profile.png.meta │ ├── srgb_with_color_profile.png │ └── srgb_with_color_profile.png.meta │ ├── Unity.UnityToCustomEngineExporter.Editor.Tests.asmdef │ └── Unity.UnityToCustomEngineExporter.Editor.Tests.asmdef.meta ├── package.json └── package.json.meta /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation~/UnityToCustomEngineExporter.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/AbstractDestinationEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/AbstractDestinationEngine.cs -------------------------------------------------------------------------------- /Editor/AbstractDestinationEngine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/AbstractDestinationEngine.cs.meta -------------------------------------------------------------------------------- /Editor/AbstractMeshSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/AbstractMeshSource.cs -------------------------------------------------------------------------------- /Editor/AbstractMeshSource.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/AbstractMeshSource.cs.meta -------------------------------------------------------------------------------- /Editor/AnimationCurveAdapterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/AnimationCurveAdapterBase.cs -------------------------------------------------------------------------------- /Editor/AnimationCurveAdapterBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/AnimationCurveAdapterBase.cs.meta -------------------------------------------------------------------------------- /Editor/AssetKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/AssetKey.cs -------------------------------------------------------------------------------- /Editor/AssetKey.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/AssetKey.cs.meta -------------------------------------------------------------------------------- /Editor/AssetNameCollisionResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/AssetNameCollisionResolver.cs -------------------------------------------------------------------------------- /Editor/AssetNameCollisionResolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/AssetNameCollisionResolver.cs.meta -------------------------------------------------------------------------------- /Editor/AutodeskInteractiveShaderArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/AutodeskInteractiveShaderArguments.cs -------------------------------------------------------------------------------- /Editor/AutodeskInteractiveShaderArguments.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/AutodeskInteractiveShaderArguments.cs.meta -------------------------------------------------------------------------------- /Editor/BoolEditorProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/BoolEditorProperty.cs -------------------------------------------------------------------------------- /Editor/BoolEditorProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/BoolEditorProperty.cs.meta -------------------------------------------------------------------------------- /Editor/DDS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/DDS.cs -------------------------------------------------------------------------------- /Editor/DDS.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/DDS.cs.meta -------------------------------------------------------------------------------- /Editor/DecalDecalProjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/DecalDecalProjector.cs -------------------------------------------------------------------------------- /Editor/DecalDecalProjector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/DecalDecalProjector.cs.meta -------------------------------------------------------------------------------- /Editor/EditorTaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/EditorTaskScheduler.cs -------------------------------------------------------------------------------- /Editor/EditorTaskScheduler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/EditorTaskScheduler.cs.meta -------------------------------------------------------------------------------- /Editor/EliminateNegativeScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/EliminateNegativeScale.cs -------------------------------------------------------------------------------- /Editor/EliminateNegativeScale.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/EliminateNegativeScale.cs.meta -------------------------------------------------------------------------------- /Editor/EulerAnglesAnimationCurveAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/EulerAnglesAnimationCurveAdapter.cs -------------------------------------------------------------------------------- /Editor/EulerAnglesAnimationCurveAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/EulerAnglesAnimationCurveAdapter.cs.meta -------------------------------------------------------------------------------- /Editor/ExportOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ExportOptions.cs -------------------------------------------------------------------------------- /Editor/ExportOptions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ExportOptions.cs.meta -------------------------------------------------------------------------------- /Editor/ExportTerrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ExportTerrain.cs -------------------------------------------------------------------------------- /Editor/ExportTerrain.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ExportTerrain.cs.meta -------------------------------------------------------------------------------- /Editor/ExportUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ExportUtils.cs -------------------------------------------------------------------------------- /Editor/ExportUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ExportUtils.cs.meta -------------------------------------------------------------------------------- /Editor/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ExtensionMethods.cs -------------------------------------------------------------------------------- /Editor/ExtensionMethods.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ExtensionMethods.cs.meta -------------------------------------------------------------------------------- /Editor/IAnimationCurveAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/IAnimationCurveAdapter.cs -------------------------------------------------------------------------------- /Editor/IAnimationCurveAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/IAnimationCurveAdapter.cs.meta -------------------------------------------------------------------------------- /Editor/IDestinationEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/IDestinationEngine.cs -------------------------------------------------------------------------------- /Editor/IDestinationEngine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/IDestinationEngine.cs.meta -------------------------------------------------------------------------------- /Editor/IUrhoModelSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/IUrhoModelSource.cs -------------------------------------------------------------------------------- /Editor/IUrhoModelSource.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/IUrhoModelSource.cs.meta -------------------------------------------------------------------------------- /Editor/LODGroupSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/LODGroupSource.cs -------------------------------------------------------------------------------- /Editor/LODGroupSource.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/LODGroupSource.cs.meta -------------------------------------------------------------------------------- /Editor/LegacyShaderArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/LegacyShaderArguments.cs -------------------------------------------------------------------------------- /Editor/LegacyShaderArguments.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/LegacyShaderArguments.cs.meta -------------------------------------------------------------------------------- /Editor/MeshSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/MeshSource.cs -------------------------------------------------------------------------------- /Editor/MeshSource.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/MeshSource.cs.meta -------------------------------------------------------------------------------- /Editor/MetallicGlossinessShaderArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/MetallicGlossinessShaderArguments.cs -------------------------------------------------------------------------------- /Editor/MetallicGlossinessShaderArguments.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/MetallicGlossinessShaderArguments.cs.meta -------------------------------------------------------------------------------- /Editor/NavMeshSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/NavMeshSource.cs -------------------------------------------------------------------------------- /Editor/NavMeshSource.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/NavMeshSource.cs.meta -------------------------------------------------------------------------------- /Editor/PBRUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/PBRUtils.cs -------------------------------------------------------------------------------- /Editor/PBRUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/PBRUtils.cs.meta -------------------------------------------------------------------------------- /Editor/ProBuilderMeshSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ProBuilderMeshSource.cs -------------------------------------------------------------------------------- /Editor/ProBuilderMeshSource.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ProBuilderMeshSource.cs.meta -------------------------------------------------------------------------------- /Editor/ProgressBarReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ProgressBarReport.cs -------------------------------------------------------------------------------- /Editor/ProgressBarReport.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ProgressBarReport.cs.meta -------------------------------------------------------------------------------- /Editor/QuaternionAnimationCurveAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/QuaternionAnimationCurveAdapter.cs -------------------------------------------------------------------------------- /Editor/QuaternionAnimationCurveAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/QuaternionAnimationCurveAdapter.cs.meta -------------------------------------------------------------------------------- /Editor/RearrangeAssets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/RearrangeAssets.cs -------------------------------------------------------------------------------- /Editor/RearrangeAssets.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/RearrangeAssets.cs.meta -------------------------------------------------------------------------------- /Editor/ReflectionProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ReflectionProxy.cs -------------------------------------------------------------------------------- /Editor/ReflectionProxy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ReflectionProxy.cs.meta -------------------------------------------------------------------------------- /Editor/ResolveNameCollisions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ResolveNameCollisions.cs -------------------------------------------------------------------------------- /Editor/ResolveNameCollisions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ResolveNameCollisions.cs.meta -------------------------------------------------------------------------------- /Editor/SaveOnCloseStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/SaveOnCloseStream.cs -------------------------------------------------------------------------------- /Editor/SaveOnCloseStream.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/SaveOnCloseStream.cs.meta -------------------------------------------------------------------------------- /Editor/SequenceReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/SequenceReader.cs -------------------------------------------------------------------------------- /Editor/SequenceReader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/SequenceReader.cs.meta -------------------------------------------------------------------------------- /Editor/ShaderArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ShaderArguments.cs -------------------------------------------------------------------------------- /Editor/ShaderArguments.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/ShaderArguments.cs.meta -------------------------------------------------------------------------------- /Editor/SkyboxShaderArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/SkyboxShaderArguments.cs -------------------------------------------------------------------------------- /Editor/SkyboxShaderArguments.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/SkyboxShaderArguments.cs.meta -------------------------------------------------------------------------------- /Editor/SmoothnessTextureChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/SmoothnessTextureChannel.cs -------------------------------------------------------------------------------- /Editor/SmoothnessTextureChannel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/SmoothnessTextureChannel.cs.meta -------------------------------------------------------------------------------- /Editor/SpecularGlossinessShaderArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/SpecularGlossinessShaderArguments.cs -------------------------------------------------------------------------------- /Editor/SpecularGlossinessShaderArguments.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/SpecularGlossinessShaderArguments.cs.meta -------------------------------------------------------------------------------- /Editor/StbSharpDxt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/StbSharpDxt.meta -------------------------------------------------------------------------------- /Editor/StbSharpDxt/CompressionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/StbSharpDxt/CompressionMode.cs -------------------------------------------------------------------------------- /Editor/StbSharpDxt/CompressionMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/StbSharpDxt/CompressionMode.cs.meta -------------------------------------------------------------------------------- /Editor/StbSharpDxt/StbDxt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/StbSharpDxt/StbDxt.cs -------------------------------------------------------------------------------- /Editor/StbSharpDxt/StbDxt.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/StbSharpDxt/StbDxt.cs.meta -------------------------------------------------------------------------------- /Editor/TextureOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/TextureOptions.cs -------------------------------------------------------------------------------- /Editor/TextureOptions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/TextureOptions.cs.meta -------------------------------------------------------------------------------- /Editor/TextureOrColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/TextureOrColor.cs -------------------------------------------------------------------------------- /Editor/TextureOrColor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/TextureOrColor.cs.meta -------------------------------------------------------------------------------- /Editor/TextureProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/TextureProcessor.cs -------------------------------------------------------------------------------- /Editor/TextureProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/TextureProcessor.cs.meta -------------------------------------------------------------------------------- /Editor/Unity.UnityToCustomEngineExporter.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Unity.UnityToCustomEngineExporter.Editor.asmdef -------------------------------------------------------------------------------- /Editor/Unity.UnityToCustomEngineExporter.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Unity.UnityToCustomEngineExporter.Editor.asmdef.meta -------------------------------------------------------------------------------- /Editor/Urho3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D.meta -------------------------------------------------------------------------------- /Editor/Urho3D/AbstractBinaryExpoerter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AbstractBinaryExpoerter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/AbstractBinaryExpoerter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AbstractBinaryExpoerter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/AbstractMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AbstractMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/AbstractMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AbstractMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/AmplifyMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AmplifyMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/AmplifyMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AmplifyMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/AmplifyShaderExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AmplifyShaderExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/AmplifyShaderExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AmplifyShaderExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/AnimationControllerExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AnimationControllerExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/AnimationControllerExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AnimationControllerExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/AnimationExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AnimationExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/AnimationExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AnimationExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/AudioExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AudioExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/AudioExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/AudioExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/BaseNodeExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/BaseNodeExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/BaseNodeExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/BaseNodeExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ContentAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ContentAssets.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ContentAssets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ContentAssets/Resources.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Material.xml -------------------------------------------------------------------------------- /Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Material.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Material.xml.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Skybox-Map.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Skybox-Map.dds -------------------------------------------------------------------------------- /Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Skybox-Map.dds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Skybox-Map.dds.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Skybox-Map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Skybox-Map.xml -------------------------------------------------------------------------------- /Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Skybox-Map.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Skybox-Map.xml.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Skybox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Skybox.xml -------------------------------------------------------------------------------- /Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Skybox.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ContentAssets/Resources/unity_builtin_extra/Default-Skybox.xml.meta -------------------------------------------------------------------------------- /Editor/Urho3D/CubemapExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/CubemapExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/CubemapExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/CubemapExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/CustomUrho3DExporterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/CustomUrho3DExporterAttribute.cs -------------------------------------------------------------------------------- /Editor/Urho3D/CustomUrho3DExporterAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/CustomUrho3DExporterAttribute.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/DestinationFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/DestinationFolder.cs -------------------------------------------------------------------------------- /Editor/Urho3D/DestinationFolder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/DestinationFolder.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/DistortionMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/DistortionMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/DistortionMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/DistortionMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Materials.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Materials/Occluder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Materials/Occluder.xml -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Materials/Occluder.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Materials/Occluder.xml.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/BRDF.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/BRDF.glsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/BRDF.glsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/BRDF.glsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRLitSolid.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRLitSolid.glsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRLitSolid.glsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRLitSolid.glsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRTerrainBlend.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRTerrainBlend.glsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRTerrainBlend.glsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRTerrainBlend.glsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRVegetation.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRVegetation.glsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRVegetation.glsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRVegetation.glsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRWater.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRWater.glsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRWater.glsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/PBRWater.glsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/Skybox.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/Skybox.glsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/Skybox.glsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/Skybox.glsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/TerrainBlend.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/TerrainBlend.glsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/TerrainBlend.glsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/TerrainBlend.glsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/Vegetation.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/Vegetation.glsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/Vegetation.glsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/Vegetation.glsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/VegetationDepth.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/VegetationDepth.glsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/VegetationDepth.glsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/VegetationDepth.glsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/VegetationShadow.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/VegetationShadow.glsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/GLSL/VegetationShadow.glsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/GLSL/VegetationShadow.glsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/BRDF.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/BRDF.hlsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/BRDF.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/BRDF.hlsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRLitSolid.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRLitSolid.hlsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRLitSolid.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRLitSolid.hlsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRTerrainBlend.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRTerrainBlend.hlsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRTerrainBlend.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRTerrainBlend.hlsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRVegetation.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRVegetation.hlsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRVegetation.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRVegetation.hlsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRWater.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRWater.hlsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRWater.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/PBRWater.hlsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/Skybox.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/Skybox.hlsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/Skybox.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/Skybox.hlsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/Vegetation.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/Vegetation.hlsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/Vegetation.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/Vegetation.hlsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/VegetationDepth.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/VegetationDepth.hlsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/VegetationDepth.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/VegetationDepth.hlsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/VegetationShadow.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/VegetationShadow.hlsl -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Shaders/HLSL/VegetationShadow.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Shaders/HLSL/VegetationShadow.hlsl.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Techniques.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Techniques.meta -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Techniques/Occluder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Techniques/Occluder.xml -------------------------------------------------------------------------------- /Editor/Urho3D/EngineAssets/Techniques/Occluder.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/EngineAssets/Techniques/Occluder.xml.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ExtensionMethods.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ExtensionMethods.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ExtensionMethods.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphCurve.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphCurve.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphEnterPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphEnterPin.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphEnterPin.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphEnterPin.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphExitPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphExitPin.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphExitPin.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphExitPin.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphInPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphInPin.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphInPin.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphInPin.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphNode.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphNode.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphNodeProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphNodeProperty.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphNodeProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphNodeProperty.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphNodeType.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphNodeType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphNodeType.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphOutPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphOutPin.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphOutPin.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphOutPin.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphPin.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphPin.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphPin.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphResource.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/GraphResource.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/GraphResource.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/IGraphElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/IGraphElement.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/IGraphElement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/IGraphElement.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/IValueFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/IValueFormatter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/IValueFormatter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/IValueFormatter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/PinList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/PinList.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/PinList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/PinList.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/ValueFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/ValueFormatter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/ValueFormatter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/ValueFormatter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/VariantType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/VariantType.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Graph/VariantType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Graph/VariantType.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/HDRPDecalMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/HDRPDecalMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/HDRPDecalMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/HDRPDecalMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/HDRPMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/HDRPMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/HDRPMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/HDRPMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/IUrho3DMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/IUrho3DMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/IUrho3DMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/IUrho3DMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/LegacyTechniqueFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/LegacyTechniqueFlags.cs -------------------------------------------------------------------------------- /Editor/Urho3D/LegacyTechniqueFlags.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/LegacyTechniqueFlags.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters.meta -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/AutodeskInteractiveExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/AutodeskInteractiveExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/AutodeskInteractiveExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/AutodeskInteractiveExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/LegacyMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/LegacyMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/LegacyMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/LegacyMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/NatureManufactureWaterMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/NatureManufactureWaterMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/NatureManufactureWaterMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/NatureManufactureWaterMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/PBRWaterMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/PBRWaterMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/PBRWaterMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/PBRWaterMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/SkyboxMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/SkyboxMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/SkyboxMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/SkyboxMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/StandardMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/StandardMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/StandardMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/StandardMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/StandardSpecularMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/StandardSpecularMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/StandardSpecularMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/StandardSpecularMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/TreeCreatorMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/TreeCreatorMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/TreeCreatorMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/TreeCreatorMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/VegetationMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/VegetationMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/VegetationMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/VegetationMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/WaterMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/WaterMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/MaterialExporters/WaterMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MaterialExporters/WaterMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/MeshExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MeshExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/MeshExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/MeshExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/FaceCameraMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/FaceCameraMode.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/FaceCameraMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/FaceCameraMode.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/GraphExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/GraphExpressionVisitor.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/GraphExpressionVisitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/GraphExpressionVisitor.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleGraphBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleGraphBuilder.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleGraphBuilder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleGraphBuilder.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleGraphEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleGraphEffect.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleGraphEffect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleGraphEffect.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleGraphEmitBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleGraphEmitBuilder.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleGraphEmitBuilder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleGraphEmitBuilder.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleGraphInitUpdateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleGraphInitUpdateBuilder.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleGraphInitUpdateBuilder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleGraphInitUpdateBuilder.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleGraphLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleGraphLayer.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleGraphLayer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleGraphLayer.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Add.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Add.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Add.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/ApplyForce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/ApplyForce.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/ApplyForce.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/ApplyForce.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/BinaryOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/BinaryOperator.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/BinaryOperator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/BinaryOperator.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Bounce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Bounce.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Bounce.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Bounce.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Box.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Box.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Box.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Break.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Break.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Break.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Break.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/BurstTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/BurstTimer.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/BurstTimer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/BurstTimer.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Cast.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Cast.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Cast.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Circle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Circle.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Circle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Circle.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Cone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Cone.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Cone.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Cone.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/CurlNoise3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/CurlNoise3D.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/CurlNoise3D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/CurlNoise3D.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Destroy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Destroy.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Destroy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Destroy.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Divide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Divide.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Divide.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Divide.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/EffectTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/EffectTime.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/EffectTime.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/EffectTime.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Emit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Emit.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Emit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Emit.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/EmitFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/EmitFrom.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/EmitFrom.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/EmitFrom.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Expire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Expire.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Expire.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Expire.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/GetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/GetAttribute.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/GetAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/GetAttribute.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Hemisphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Hemisphere.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Hemisphere.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Hemisphere.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Length.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Length.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Length.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Length.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Lerp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Lerp.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Lerp.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Lerp.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/LimitVelocity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/LimitVelocity.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/LimitVelocity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/LimitVelocity.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Make.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Make.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Make.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Make.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Move.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Move.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Move.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Move.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Multiply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Multiply.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Multiply.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Multiply.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Negate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Negate.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Negate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Negate.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Noise3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Noise3D.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Noise3D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Noise3D.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Normalized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Normalized.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Normalized.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Normalized.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/NormalizedEffectTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/NormalizedEffectTime.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/NormalizedEffectTime.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/NormalizedEffectTime.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Random.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Random.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Random.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/RenderBillboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/RenderBillboard.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/RenderBillboard.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/RenderBillboard.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/RenderMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/RenderMesh.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/RenderMesh.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/RenderMesh.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/ResourceRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/ResourceRef.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/ResourceRef.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/ResourceRef.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/ResourceRefList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/ResourceRefList.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/ResourceRefList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/ResourceRefList.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/SetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/SetAttribute.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/SetAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/SetAttribute.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Slerp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Slerp.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Slerp.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Slerp.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Sphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Sphere.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Sphere.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Sphere.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Subtract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Subtract.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/Subtract.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/Subtract.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/TimeStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/TimeStep.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/TimeStep.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/TimeStep.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/TimeStepScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/TimeStepScale.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraph/ParticleNodes/TimeStepScale.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraph/ParticleNodes/TimeStepScale.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraphExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraphExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleGraphExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleGraphExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleStandardUnlitMaterialExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleStandardUnlitMaterialExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ParticleStandardUnlitMaterialExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ParticleStandardUnlitMaterialExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/PrefabContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/PrefabContext.cs -------------------------------------------------------------------------------- /Editor/Urho3D/PrefabContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/PrefabContext.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/PrefabExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/PrefabExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/PrefabExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/PrefabExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/PrimitiveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/PrimitiveType.cs -------------------------------------------------------------------------------- /Editor/Urho3D/PrimitiveType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/PrimitiveType.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ProBuilder.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ProBuilder.meta -------------------------------------------------------------------------------- /Editor/Urho3D/ProBuilder/ProBuilderMeshAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ProBuilder/ProBuilderMeshAdapter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/ProBuilder/ProBuilderMeshAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/ProBuilder/ProBuilderMeshAdapter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/SceneExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/SceneExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/SceneExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/SceneExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/CombineMetallicRoughnessOcclusion.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/CombineMetallicRoughnessOcclusion.shader -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/CombineMetallicRoughnessOcclusion.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/CombineMetallicRoughnessOcclusion.shader.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/ConvertSpecularToMetallicRoughness.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/ConvertSpecularToMetallicRoughness.shader -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/ConvertSpecularToMetallicRoughness.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/ConvertSpecularToMetallicRoughness.shader.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/ConvertToBaseColor.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/ConvertToBaseColor.shader -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/ConvertToBaseColor.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/ConvertToBaseColor.shader.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/ConvertToMetallicRoughness.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/ConvertToMetallicRoughness.shader -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/ConvertToMetallicRoughness.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/ConvertToMetallicRoughness.shader.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/Copy.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/Copy.shader -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/Copy.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/Copy.shader.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/DecodeCompressedNormalMap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/DecodeCompressedNormalMap.shader -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/DecodeCompressedNormalMap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/DecodeCompressedNormalMap.shader.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/DecodeNormalMap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/DecodeNormalMap.shader -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/DecodeNormalMap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/DecodeNormalMap.shader.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/DecodeNormalMapPackedNormal.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/DecodeNormalMapPackedNormal.shader -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/DecodeNormalMapPackedNormal.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/DecodeNormalMapPackedNormal.shader.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/PBRUtils.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/PBRUtils.cginc -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/PBRUtils.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/PBRUtils.cginc.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/PremultiplyOcclusionStrength.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/PremultiplyOcclusionStrength.shader -------------------------------------------------------------------------------- /Editor/Urho3D/Shaders/PremultiplyOcclusionStrength.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Shaders/PremultiplyOcclusionStrength.shader.meta -------------------------------------------------------------------------------- /Editor/Urho3D/SyntyStudiosBlooodExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/SyntyStudiosBlooodExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/SyntyStudiosBlooodExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/SyntyStudiosBlooodExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Technique.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Technique.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Technique.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Technique.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/TerrainExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/TerrainExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/TerrainExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/TerrainExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/TextureExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/TextureExporter.cs -------------------------------------------------------------------------------- /Editor/Urho3D/TextureExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/TextureExporter.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Urho3DCulling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Urho3DCulling.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Urho3DCulling.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Urho3DCulling.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Urho3DEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Urho3DEngine.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Urho3DEngine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Urho3DEngine.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/Urho3DExportOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Urho3DExportOptions.cs -------------------------------------------------------------------------------- /Editor/Urho3D/Urho3DExportOptions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/Urho3DExportOptions.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/UrhoAnimationTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/UrhoAnimationTrack.cs -------------------------------------------------------------------------------- /Editor/Urho3D/UrhoAnimationTrack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/UrhoAnimationTrack.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/UrhoConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/UrhoConstraint.cs -------------------------------------------------------------------------------- /Editor/Urho3D/UrhoConstraint.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/UrhoConstraint.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/UrhoPBRMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/UrhoPBRMaterial.cs -------------------------------------------------------------------------------- /Editor/Urho3D/UrhoPBRMaterial.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/UrhoPBRMaterial.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/VertexElementSemantic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/VertexElementSemantic.cs -------------------------------------------------------------------------------- /Editor/Urho3D/VertexElementSemantic.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/VertexElementSemantic.cs.meta -------------------------------------------------------------------------------- /Editor/Urho3D/VertexElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/VertexElementType.cs -------------------------------------------------------------------------------- /Editor/Urho3D/VertexElementType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Urho3D/VertexElementType.cs.meta -------------------------------------------------------------------------------- /Editor/Vector3AnimationCurveAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Vector3AnimationCurveAdapter.cs -------------------------------------------------------------------------------- /Editor/Vector3AnimationCurveAdapter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Editor/Vector3AnimationCurveAdapter.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/README.md.meta -------------------------------------------------------------------------------- /Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime.meta -------------------------------------------------------------------------------- /Runtime/Unity.UnityToCustomEngineExporter.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Unity.UnityToCustomEngineExporter.asmdef -------------------------------------------------------------------------------- /Runtime/Unity.UnityToCustomEngineExporter.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Unity.UnityToCustomEngineExporter.asmdef.meta -------------------------------------------------------------------------------- /Runtime/Urho3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D.meta -------------------------------------------------------------------------------- /Runtime/Urho3D/IUrho3DComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/IUrho3DComponent.cs -------------------------------------------------------------------------------- /Runtime/Urho3D/IUrho3DComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/IUrho3DComponent.cs.meta -------------------------------------------------------------------------------- /Runtime/Urho3D/LitOpaque.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/LitOpaque.shader -------------------------------------------------------------------------------- /Runtime/Urho3D/LitOpaque.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/LitOpaque.shader.meta -------------------------------------------------------------------------------- /Runtime/Urho3D/LitOpaqueAmp.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/LitOpaqueAmp.shader -------------------------------------------------------------------------------- /Runtime/Urho3D/LitOpaqueAmp.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/LitOpaqueAmp.shader.meta -------------------------------------------------------------------------------- /Runtime/Urho3D/LitTransparent.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/LitTransparent.shader -------------------------------------------------------------------------------- /Runtime/Urho3D/LitTransparent.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/LitTransparent.shader.meta -------------------------------------------------------------------------------- /Runtime/Urho3D/PBRVegetation.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/PBRVegetation.shader -------------------------------------------------------------------------------- /Runtime/Urho3D/PBRVegetation.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/PBRVegetation.shader.meta -------------------------------------------------------------------------------- /Runtime/Urho3D/PBRWater.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/PBRWater.shader -------------------------------------------------------------------------------- /Runtime/Urho3D/PBRWater.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/PBRWater.shader.meta -------------------------------------------------------------------------------- /Runtime/Urho3D/Skybox.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/Skybox.shader -------------------------------------------------------------------------------- /Runtime/Urho3D/Skybox.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/Skybox.shader.meta -------------------------------------------------------------------------------- /Runtime/Urho3D/Urho3DAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/Urho3DAttribute.cs -------------------------------------------------------------------------------- /Runtime/Urho3D/Urho3DAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/Urho3DAttribute.cs.meta -------------------------------------------------------------------------------- /Runtime/Urho3D/Water.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/Water.shader -------------------------------------------------------------------------------- /Runtime/Urho3D/Water.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Runtime/Urho3D/Water.shader.meta -------------------------------------------------------------------------------- /Source.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Source.meta -------------------------------------------------------------------------------- /Source/Urho3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Source/Urho3D.meta -------------------------------------------------------------------------------- /Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests.meta -------------------------------------------------------------------------------- /Tests/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor.meta -------------------------------------------------------------------------------- /Tests/Editor/ExportUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/ExportUtilsTests.cs -------------------------------------------------------------------------------- /Tests/Editor/ExportUtilsTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/ExportUtilsTests.cs.meta -------------------------------------------------------------------------------- /Tests/Editor/PBRUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/PBRUtilsTests.cs -------------------------------------------------------------------------------- /Tests/Editor/PBRUtilsTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/PBRUtilsTests.cs.meta -------------------------------------------------------------------------------- /Tests/Editor/StbDxtTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/StbDxtTests.cs -------------------------------------------------------------------------------- /Tests/Editor/StbDxtTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/StbDxtTests.cs.meta -------------------------------------------------------------------------------- /Tests/Editor/TextureProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/TextureProcessorTests.cs -------------------------------------------------------------------------------- /Tests/Editor/TextureProcessorTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/TextureProcessorTests.cs.meta -------------------------------------------------------------------------------- /Tests/Editor/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/Textures.meta -------------------------------------------------------------------------------- /Tests/Editor/Textures/linear_no_color_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/Textures/linear_no_color_profile.png -------------------------------------------------------------------------------- /Tests/Editor/Textures/linear_no_color_profile.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/Textures/linear_no_color_profile.png.meta -------------------------------------------------------------------------------- /Tests/Editor/Textures/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/Textures/normal.png -------------------------------------------------------------------------------- /Tests/Editor/Textures/normal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/Textures/normal.png.meta -------------------------------------------------------------------------------- /Tests/Editor/Textures/srgb_no_color_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/Textures/srgb_no_color_profile.png -------------------------------------------------------------------------------- /Tests/Editor/Textures/srgb_no_color_profile.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/Textures/srgb_no_color_profile.png.meta -------------------------------------------------------------------------------- /Tests/Editor/Textures/srgb_with_color_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/Textures/srgb_with_color_profile.png -------------------------------------------------------------------------------- /Tests/Editor/Textures/srgb_with_color_profile.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/Textures/srgb_with_color_profile.png.meta -------------------------------------------------------------------------------- /Tests/Editor/Unity.UnityToCustomEngineExporter.Editor.Tests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/Unity.UnityToCustomEngineExporter.Editor.Tests.asmdef -------------------------------------------------------------------------------- /Tests/Editor/Unity.UnityToCustomEngineExporter.Editor.Tests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/Tests/Editor/Unity.UnityToCustomEngineExporter.Editor.Tests.asmdef.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gleblebedev/Unity2Urho/HEAD/package.json.meta --------------------------------------------------------------------------------