├── Bin ├── CoreData │ ├── Materials │ │ └── DefaultGrey.xml │ ├── RenderPaths │ │ ├── Deferred.xml │ │ ├── Forward.xml │ │ ├── ForwardDepth.xml │ │ ├── Prepass.xml │ │ └── PrepassHDR.xml │ ├── Shaders │ │ ├── GLSL │ │ │ ├── AutoExposure.glsl │ │ │ ├── Basic.glsl │ │ │ ├── Bloom.glsl │ │ │ ├── BloomHDR.glsl │ │ │ ├── Blur.glsl │ │ │ ├── ColorCorrection.glsl │ │ │ ├── CopyFramebuffer.glsl │ │ │ ├── DeferredLight.glsl │ │ │ ├── Depth.glsl │ │ │ ├── FXAA2.glsl │ │ │ ├── FXAA3.glsl │ │ │ ├── Fog.glsl │ │ │ ├── GammaCorrection.glsl │ │ │ ├── GreyScale.glsl │ │ │ ├── Lighting.glsl │ │ │ ├── LitParticle.glsl │ │ │ ├── LitSolid.glsl │ │ │ ├── PostProcess.glsl │ │ │ ├── PrepassLight.glsl │ │ │ ├── Samplers.glsl │ │ │ ├── ScreenPos.glsl │ │ │ ├── Shadow.glsl │ │ │ ├── Skybox.glsl │ │ │ ├── Stencil.glsl │ │ │ ├── TerrainBlend.glsl │ │ │ ├── Tonemap.glsl │ │ │ ├── Transform.glsl │ │ │ ├── Uniforms.glsl │ │ │ ├── Unlit.glsl │ │ │ ├── Vegetation.glsl │ │ │ ├── VegetationDepth.glsl │ │ │ ├── VegetationShadow.glsl │ │ │ └── Water.glsl │ │ └── HLSL │ │ │ ├── AutoExposure.hlsl │ │ │ ├── Basic.hlsl │ │ │ ├── Bloom.hlsl │ │ │ ├── BloomHDR.hlsl │ │ │ ├── Blur.hlsl │ │ │ ├── ColorCorrection.hlsl │ │ │ ├── CopyFramebuffer.hlsl │ │ │ ├── DeferredLight.hlsl │ │ │ ├── Depth.hlsl │ │ │ ├── FXAA2.hlsl │ │ │ ├── FXAA3.hlsl │ │ │ ├── Fog.hlsl │ │ │ ├── GammaCorrection.hlsl │ │ │ ├── GreyScale.hlsl │ │ │ ├── Lighting.hlsl │ │ │ ├── LitParticle.hlsl │ │ │ ├── LitSolid.hlsl │ │ │ ├── PostProcess.hlsl │ │ │ ├── PrepassLight.hlsl │ │ │ ├── Samplers.hlsl │ │ │ ├── ScreenPos.hlsl │ │ │ ├── Shadow.hlsl │ │ │ ├── Skybox.hlsl │ │ │ ├── Stencil.hlsl │ │ │ ├── TerrainBlend.hlsl │ │ │ ├── Tonemap.hlsl │ │ │ ├── Transform.hlsl │ │ │ ├── Uniforms.hlsl │ │ │ ├── Unlit.hlsl │ │ │ ├── Vegetation.hlsl │ │ │ ├── VegetationDepth.hlsl │ │ │ ├── VegetationShadow.hlsl │ │ │ └── Water.hlsl │ ├── Techniques │ │ ├── Diff.xml │ │ ├── DiffAO.xml │ │ ├── DiffAOAlpha.xml │ │ ├── DiffAOAlphaMask.xml │ │ ├── DiffAdd.xml │ │ ├── DiffAddAlpha.xml │ │ ├── DiffAlpha.xml │ │ ├── DiffAlphaMask.xml │ │ ├── DiffEmissive.xml │ │ ├── DiffEmissiveAlpha.xml │ │ ├── DiffEnvCube.xml │ │ ├── DiffEnvCubeAO.xml │ │ ├── DiffEnvCubeAOAlpha.xml │ │ ├── DiffEnvCubeAlpha.xml │ │ ├── DiffLightMap.xml │ │ ├── DiffLightMapAlpha.xml │ │ ├── DiffLitParticleAlpha.xml │ │ ├── DiffMultiply.xml │ │ ├── DiffNormal.xml │ │ ├── DiffNormalAO.xml │ │ ├── DiffNormalAOAlpha.xml │ │ ├── DiffNormalAOAlphaMask.xml │ │ ├── DiffNormalAlpha.xml │ │ ├── DiffNormalAlphaMask.xml │ │ ├── DiffNormalEmissive.xml │ │ ├── DiffNormalEmissiveAlpha.xml │ │ ├── DiffNormalEnvCube.xml │ │ ├── DiffNormalEnvCubeAlpha.xml │ │ ├── DiffNormalPacked.xml │ │ ├── DiffNormalPackedAO.xml │ │ ├── DiffNormalPackedAOAlpha.xml │ │ ├── DiffNormalPackedAOAlphaMask.xml │ │ ├── DiffNormalPackedAlpha.xml │ │ ├── DiffNormalPackedAlphaMask.xml │ │ ├── DiffNormalPackedEmissive.xml │ │ ├── DiffNormalPackedEmissiveAlpha.xml │ │ ├── DiffNormalPackedEnvCube.xml │ │ ├── DiffNormalPackedEnvCubeAlpha.xml │ │ ├── DiffNormalPackedSpec.xml │ │ ├── DiffNormalPackedSpecAO.xml │ │ ├── DiffNormalPackedSpecAOAlpha.xml │ │ ├── DiffNormalPackedSpecAOAlphaMask.xml │ │ ├── DiffNormalPackedSpecAlpha.xml │ │ ├── DiffNormalPackedSpecAlphaMask.xml │ │ ├── DiffNormalPackedSpecEmissive.xml │ │ ├── DiffNormalPackedSpecEmissiveAlpha.xml │ │ ├── DiffNormalSpec.xml │ │ ├── DiffNormalSpecAO.xml │ │ ├── DiffNormalSpecAOAlpha.xml │ │ ├── DiffNormalSpecAOAlphaMask.xml │ │ ├── DiffNormalSpecAlpha.xml │ │ ├── DiffNormalSpecAlphaMask.xml │ │ ├── DiffNormalSpecEmissive.xml │ │ ├── DiffNormalSpecEmissiveAlpha.xml │ │ ├── DiffOverlay.xml │ │ ├── DiffSkybox.xml │ │ ├── DiffSkyplane.xml │ │ ├── DiffSpec.xml │ │ ├── DiffSpecAlpha.xml │ │ ├── DiffSpecAlphaMask.xml │ │ ├── DiffUnlit.xml │ │ ├── DiffUnlitAlpha.xml │ │ ├── DiffVColAdd.xml │ │ ├── DiffVColAddAlpha.xml │ │ ├── DiffVColMultiply.xml │ │ ├── DiffVColUnlitAlpha.xml │ │ ├── NoTexture.xml │ │ ├── NoTextureAO.xml │ │ ├── NoTextureAOAlpha.xml │ │ ├── NoTextureAdd.xml │ │ ├── NoTextureAddAlpha.xml │ │ ├── NoTextureAlpha.xml │ │ ├── NoTextureEnvCube.xml │ │ ├── NoTextureEnvCubeAO.xml │ │ ├── NoTextureEnvCubeAOAlpha.xml │ │ ├── NoTextureEnvCubeAlpha.xml │ │ ├── NoTextureMultiply.xml │ │ ├── NoTextureNormal.xml │ │ ├── NoTextureNormalAlpha.xml │ │ ├── NoTextureNormalPacked.xml │ │ ├── NoTextureNormalPackedAlpha.xml │ │ ├── NoTextureOverlay.xml │ │ ├── NoTextureUnlit.xml │ │ ├── NoTextureUnlitAlpha.xml │ │ ├── NoTextureUnlitVCol.xml │ │ ├── NoTextureVColAdd.xml │ │ ├── NoTextureVColAddAlpha.xml │ │ ├── NoTextureVColMultiply.xml │ │ ├── TerrainBlend.xml │ │ ├── VegetationDiff.xml │ │ ├── VegetationDiffAlphaMask.xml │ │ ├── VegetationDiffUnlit.xml │ │ ├── VegetationDiffUnlitAlphaMask.xml │ │ └── Water.xml │ └── Textures │ │ ├── LUTIdentity.png │ │ ├── LUTIdentity.xml │ │ ├── Ramp.png │ │ ├── Ramp.xml │ │ ├── RampExtreme.png │ │ ├── RampExtreme.xml │ │ ├── RampWide.png │ │ ├── RampWide.xml │ │ ├── Spot.png │ │ ├── Spot.xml │ │ ├── SpotWide.png │ │ └── SpotWide.xml ├── Data │ ├── Fonts │ │ ├── Anonymous Pro.ttf │ │ ├── BlueHighway.ttf │ │ ├── OFL.txt │ │ └── read_me.html │ ├── Materials │ │ ├── Editor │ │ │ ├── BlueUnlit.xml │ │ │ ├── BrightBlueUnlit.xml │ │ │ ├── BrightGreenUnlit.xml │ │ │ ├── BrightRedUnlit.xml │ │ │ ├── GreenUnlit.xml │ │ │ ├── RedUnlit.xml │ │ │ └── TexturedUnlit.xml │ │ ├── GreenTransparent.xml │ │ ├── Jack.xml │ │ ├── JackEnvMap.xml │ │ ├── LitSmoke.xml │ │ ├── Mushroom.xml │ │ ├── MushroomEnvMap.xml │ │ ├── MushroomWind.xml │ │ ├── MushroomWindUnlit.xml │ │ ├── NinjaSnowWar │ │ │ ├── CloudPlane.xml │ │ │ ├── Ninja.xml │ │ │ ├── Potion.xml │ │ │ ├── Snow.xml │ │ │ └── SnowCrate.xml │ │ ├── Particle.xml │ │ ├── Skybox.xml │ │ ├── Smoke.xml │ │ ├── Stone.xml │ │ ├── StoneEnvMap.xml │ │ ├── StoneEnvMapSmall.xml │ │ ├── StoneSmall.xml │ │ ├── StoneTiled.xml │ │ ├── StoneTiledH.xml │ │ ├── Terrain.xml │ │ ├── UrhoDecal.xml │ │ ├── UrhoDecalAlpha.xml │ │ ├── VColUnlit.xml │ │ └── Water.xml │ ├── Textures │ │ ├── BrightDay1_NegX.dds │ │ ├── BrightDay1_NegY.dds │ │ ├── BrightDay1_NegZ.dds │ │ ├── BrightDay1_PosX.dds │ │ ├── BrightDay1_PosY.dds │ │ ├── BrightDay1_PosZ.dds │ │ ├── Editor │ │ │ ├── EditorIcons.png │ │ │ ├── EditorIcons.xml │ │ │ └── NoPreviewAvailable.png │ │ ├── Flare.dds │ │ ├── HeightMap.png │ │ ├── Jack_body_color.jpg │ │ ├── Jack_face.jpg │ │ ├── Logo.png │ │ ├── Logo.xml │ │ ├── LogoLarge.png │ │ ├── LogoLarge.xml │ │ ├── Mushroom.dds │ │ ├── NinjaSnowWar │ │ │ ├── CloudPlane.dds │ │ │ ├── HealthBarBorder.png │ │ │ ├── HealthBarInside.png │ │ │ ├── Ninja.dds │ │ │ ├── Sight.png │ │ │ ├── Sight.xml │ │ │ ├── Snow.dds │ │ │ └── SnowCrate.dds │ │ ├── OldUI.png │ │ ├── OldUI.xml │ │ ├── Skybox.xml │ │ ├── Smoke.dds │ │ ├── StoneDiffuse.dds │ │ ├── StoneNormal.dds │ │ ├── TerrainDetail1.dds │ │ ├── TerrainDetail2.dds │ │ ├── TerrainDetail3.dds │ │ ├── TerrainWeights.dds │ │ ├── TouchInput.png │ │ ├── UI.png │ │ ├── UI.xml │ │ ├── UrhoDecal.dds │ │ ├── UrhoDecalAlpha.dds │ │ ├── UrhoIcon.png │ │ └── WaterNoise.dds │ ├── UI │ │ ├── DefaultStyle.xml │ │ ├── EditorContextMenu.xml │ │ ├── EditorHierarchyWindow.xml │ │ ├── EditorIcons.xml │ │ ├── EditorInspectorWindow.xml │ │ ├── EditorInspector_Attribute.xml │ │ ├── EditorInspector_Style.xml │ │ ├── EditorInspector_Variable.xml │ │ ├── EditorMaterialWindow.xml │ │ ├── EditorPreferencesDialog.xml │ │ ├── EditorQuickMenu.xml │ │ ├── EditorResourceBrowser.xml │ │ ├── EditorResourceFilterWindow.xml │ │ ├── EditorSettingsDialog.xml │ │ ├── EditorSpawnWindow.xml │ │ ├── EditorViewport.xml │ │ ├── MessageBox.xml │ │ ├── OldStyle.xml │ │ ├── ScreenJoystick.xml │ │ ├── ScreenJoystickSettings.xml │ │ ├── ScreenJoystickSettings_NinjaSnowWar.xml │ │ ├── ScreenJoystickSettings_Samples.xml │ │ ├── ScreenJoystick_NinjaSnowWar.xml │ │ └── ScreenJoystick_Samples.xml │ └── Urho2D │ │ ├── Aster.png │ │ ├── Ball.png │ │ ├── Box.png │ │ ├── GoldIcon.png │ │ ├── GoldIcon.scml │ │ ├── GoldIcon.xml │ │ ├── GoldIcon │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ │ ├── fire.pex │ │ ├── greenspiral.pex │ │ ├── greenspiral.png │ │ ├── imp │ │ ├── imp.png │ │ ├── imp.scml │ │ ├── imp.txt │ │ ├── imp.xml │ │ ├── imp_blood.png │ │ ├── imp_body.png │ │ ├── imp_footbig.png │ │ ├── imp_footsmall.png │ │ ├── imp_handbig.png │ │ ├── imp_handsmall.png │ │ ├── imp_handthrow.png │ │ ├── imp_head.png │ │ ├── imp_headangry.png │ │ └── imp_headblink.png │ │ ├── sun.pex │ │ └── sun.png ├── ParticleEditor2D.exe ├── QtCore4.dll ├── QtGui4.dll ├── msvcp110.dll └── msvcr110.dll ├── License.txt ├── Readme.md └── Source └── Tools ├── CMakeLists.txt └── ParticleEditor2D ├── CMakeLists.txt ├── ColorVarianceEditor.cpp ├── ColorVarianceEditor.h ├── EmitterAttributeEditor.cpp ├── EmitterAttributeEditor.h ├── FloatEditor.cpp ├── FloatEditor.h ├── Images ├── Icon.png ├── New.png ├── Open.png ├── Save.png ├── SaveAs.png ├── Settings.png ├── SplashScreen.jpg ├── ZoomIn.png ├── ZoomOut.png └── ZoomReset.png ├── IntEditor.cpp ├── IntEditor.h ├── Main.cpp ├── MainWindow.cpp ├── MainWindow.h ├── ParticleAttributeEditor.cpp ├── ParticleAttributeEditor.h ├── ParticleEditor.cpp ├── ParticleEditor.h ├── ParticleEffectEditor.cpp ├── ParticleEffectEditor.h ├── Resources.qrc ├── ScrollAreaWidget.cpp ├── ScrollAreaWidget.h ├── ValueVarianceEditor.cpp ├── ValueVarianceEditor.h ├── Vector2Editor.cpp ├── Vector2Editor.h ├── rc ├── Hmovetoolbar.png ├── Hsepartoolbar.png ├── Vmovetoolbar.png ├── Vsepartoolbar.png ├── branch_closed-on.png ├── branch_closed.png ├── branch_open-on.png ├── branch_open.png ├── checkbox.png ├── close.png ├── down_arrow.png ├── down_arrow_disabled.png ├── left_arrow.png ├── left_arrow_disabled.png ├── right_arrow.png ├── right_arrow_disabled.png ├── sizegrip.png ├── stylesheet-branch-end.png ├── stylesheet-branch-more.png ├── stylesheet-vline.png ├── transparent.png ├── undock.png ├── up_arrow.png └── up_arrow_disabled.png ├── style.qrc └── style.qss /Bin/CoreData/Materials/DefaultGrey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Materials/DefaultGrey.xml -------------------------------------------------------------------------------- /Bin/CoreData/RenderPaths/Deferred.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/RenderPaths/Deferred.xml -------------------------------------------------------------------------------- /Bin/CoreData/RenderPaths/Forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/RenderPaths/Forward.xml -------------------------------------------------------------------------------- /Bin/CoreData/RenderPaths/ForwardDepth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/RenderPaths/ForwardDepth.xml -------------------------------------------------------------------------------- /Bin/CoreData/RenderPaths/Prepass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/RenderPaths/Prepass.xml -------------------------------------------------------------------------------- /Bin/CoreData/RenderPaths/PrepassHDR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/RenderPaths/PrepassHDR.xml -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/AutoExposure.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/AutoExposure.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Basic.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Basic.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Bloom.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Bloom.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/BloomHDR.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/BloomHDR.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Blur.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Blur.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/ColorCorrection.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/ColorCorrection.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/CopyFramebuffer.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/CopyFramebuffer.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/DeferredLight.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/DeferredLight.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Depth.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Depth.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/FXAA2.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/FXAA2.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/FXAA3.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/FXAA3.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Fog.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Fog.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/GammaCorrection.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/GammaCorrection.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/GreyScale.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/GreyScale.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Lighting.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Lighting.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/LitParticle.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/LitParticle.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/LitSolid.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/LitSolid.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/PostProcess.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/PostProcess.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/PrepassLight.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/PrepassLight.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Samplers.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Samplers.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/ScreenPos.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/ScreenPos.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Shadow.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Shadow.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Skybox.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Skybox.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Stencil.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Stencil.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/TerrainBlend.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/TerrainBlend.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Tonemap.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Tonemap.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Transform.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Transform.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Uniforms.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Uniforms.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Unlit.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Unlit.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Vegetation.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Vegetation.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/VegetationDepth.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/VegetationDepth.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/VegetationShadow.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/VegetationShadow.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/GLSL/Water.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/GLSL/Water.glsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/AutoExposure.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/AutoExposure.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Basic.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Basic.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Bloom.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Bloom.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/BloomHDR.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/BloomHDR.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Blur.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Blur.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/ColorCorrection.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/ColorCorrection.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/CopyFramebuffer.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/CopyFramebuffer.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/DeferredLight.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/DeferredLight.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Depth.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Depth.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/FXAA2.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/FXAA2.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/FXAA3.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/FXAA3.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Fog.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Fog.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/GammaCorrection.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/GammaCorrection.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/GreyScale.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/GreyScale.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Lighting.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Lighting.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/LitParticle.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/LitParticle.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/LitSolid.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/LitSolid.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/PostProcess.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/PostProcess.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/PrepassLight.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/PrepassLight.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Samplers.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Samplers.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/ScreenPos.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/ScreenPos.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Shadow.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Shadow.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Skybox.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Skybox.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Stencil.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Stencil.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/TerrainBlend.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/TerrainBlend.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Tonemap.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Tonemap.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Transform.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Transform.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Uniforms.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Uniforms.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Unlit.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Unlit.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Vegetation.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Vegetation.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/VegetationDepth.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/VegetationDepth.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/VegetationShadow.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/VegetationShadow.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Shaders/HLSL/Water.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Shaders/HLSL/Water.hlsl -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/Diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/Diff.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffAO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffAO.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffAOAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffAOAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffAOAlphaMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffAOAlphaMask.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffAdd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffAdd.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffAddAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffAddAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffAlphaMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffAlphaMask.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffEmissive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffEmissive.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffEmissiveAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffEmissiveAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffEnvCube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffEnvCube.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffEnvCubeAO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffEnvCubeAO.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffEnvCubeAOAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffEnvCubeAOAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffEnvCubeAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffEnvCubeAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffLightMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffLightMap.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffLightMapAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffLightMapAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffLitParticleAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffLitParticleAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffMultiply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffMultiply.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormal.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalAO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalAO.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalAOAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalAOAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalAOAlphaMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalAOAlphaMask.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalAlphaMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalAlphaMask.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalEmissive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalEmissive.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalEmissiveAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalEmissiveAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalEnvCube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalEnvCube.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalEnvCubeAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalEnvCubeAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPacked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPacked.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedAO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedAO.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedAOAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedAOAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedAOAlphaMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedAOAlphaMask.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedAlphaMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedAlphaMask.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedEmissive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedEmissive.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedEmissiveAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedEmissiveAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedEnvCube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedEnvCube.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedEnvCubeAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedEnvCubeAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedSpec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedSpec.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedSpecAO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedSpecAO.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedSpecAOAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedSpecAOAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedSpecAOAlphaMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedSpecAOAlphaMask.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedSpecAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedSpecAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedSpecAlphaMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedSpecAlphaMask.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedSpecEmissive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedSpecEmissive.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalPackedSpecEmissiveAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalPackedSpecEmissiveAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalSpec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalSpec.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalSpecAO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalSpecAO.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalSpecAOAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalSpecAOAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalSpecAOAlphaMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalSpecAOAlphaMask.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalSpecAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalSpecAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalSpecAlphaMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalSpecAlphaMask.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalSpecEmissive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalSpecEmissive.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffNormalSpecEmissiveAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffNormalSpecEmissiveAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffOverlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffOverlay.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffSkybox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffSkybox.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffSkyplane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffSkyplane.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffSpec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffSpec.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffSpecAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffSpecAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffSpecAlphaMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffSpecAlphaMask.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffUnlit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffUnlit.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffUnlitAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffUnlitAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffVColAdd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffVColAdd.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffVColAddAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffVColAddAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffVColMultiply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffVColMultiply.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/DiffVColUnlitAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/DiffVColUnlitAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTexture.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTexture.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureAO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureAO.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureAOAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureAOAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureAdd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureAdd.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureAddAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureAddAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureEnvCube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureEnvCube.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureEnvCubeAO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureEnvCubeAO.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureEnvCubeAOAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureEnvCubeAOAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureEnvCubeAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureEnvCubeAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureMultiply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureMultiply.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureNormal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureNormal.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureNormalAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureNormalAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureNormalPacked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureNormalPacked.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureNormalPackedAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureNormalPackedAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureOverlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureOverlay.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureUnlit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureUnlit.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureUnlitAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureUnlitAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureUnlitVCol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureUnlitVCol.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureVColAdd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureVColAdd.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureVColAddAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureVColAddAlpha.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/NoTextureVColMultiply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/NoTextureVColMultiply.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/TerrainBlend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/TerrainBlend.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/VegetationDiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/VegetationDiff.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/VegetationDiffAlphaMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/VegetationDiffAlphaMask.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/VegetationDiffUnlit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/VegetationDiffUnlit.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/VegetationDiffUnlitAlphaMask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/VegetationDiffUnlitAlphaMask.xml -------------------------------------------------------------------------------- /Bin/CoreData/Techniques/Water.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Techniques/Water.xml -------------------------------------------------------------------------------- /Bin/CoreData/Textures/LUTIdentity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Textures/LUTIdentity.png -------------------------------------------------------------------------------- /Bin/CoreData/Textures/LUTIdentity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Textures/LUTIdentity.xml -------------------------------------------------------------------------------- /Bin/CoreData/Textures/Ramp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Textures/Ramp.png -------------------------------------------------------------------------------- /Bin/CoreData/Textures/Ramp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Textures/Ramp.xml -------------------------------------------------------------------------------- /Bin/CoreData/Textures/RampExtreme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Textures/RampExtreme.png -------------------------------------------------------------------------------- /Bin/CoreData/Textures/RampExtreme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Textures/RampExtreme.xml -------------------------------------------------------------------------------- /Bin/CoreData/Textures/RampWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Textures/RampWide.png -------------------------------------------------------------------------------- /Bin/CoreData/Textures/RampWide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Textures/RampWide.xml -------------------------------------------------------------------------------- /Bin/CoreData/Textures/Spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Textures/Spot.png -------------------------------------------------------------------------------- /Bin/CoreData/Textures/Spot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Textures/Spot.xml -------------------------------------------------------------------------------- /Bin/CoreData/Textures/SpotWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Textures/SpotWide.png -------------------------------------------------------------------------------- /Bin/CoreData/Textures/SpotWide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/CoreData/Textures/SpotWide.xml -------------------------------------------------------------------------------- /Bin/Data/Fonts/Anonymous Pro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Fonts/Anonymous Pro.ttf -------------------------------------------------------------------------------- /Bin/Data/Fonts/BlueHighway.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Fonts/BlueHighway.ttf -------------------------------------------------------------------------------- /Bin/Data/Fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Fonts/OFL.txt -------------------------------------------------------------------------------- /Bin/Data/Fonts/read_me.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Fonts/read_me.html -------------------------------------------------------------------------------- /Bin/Data/Materials/Editor/BlueUnlit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Editor/BlueUnlit.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Editor/BrightBlueUnlit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Editor/BrightBlueUnlit.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Editor/BrightGreenUnlit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Editor/BrightGreenUnlit.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Editor/BrightRedUnlit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Editor/BrightRedUnlit.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Editor/GreenUnlit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Editor/GreenUnlit.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Editor/RedUnlit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Editor/RedUnlit.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Editor/TexturedUnlit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Editor/TexturedUnlit.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/GreenTransparent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/GreenTransparent.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Jack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Jack.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/JackEnvMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/JackEnvMap.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/LitSmoke.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/LitSmoke.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Mushroom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Mushroom.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/MushroomEnvMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/MushroomEnvMap.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/MushroomWind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/MushroomWind.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/MushroomWindUnlit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/MushroomWindUnlit.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/NinjaSnowWar/CloudPlane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/NinjaSnowWar/CloudPlane.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/NinjaSnowWar/Ninja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/NinjaSnowWar/Ninja.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/NinjaSnowWar/Potion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/NinjaSnowWar/Potion.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/NinjaSnowWar/Snow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/NinjaSnowWar/Snow.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/NinjaSnowWar/SnowCrate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/NinjaSnowWar/SnowCrate.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Particle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Particle.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Skybox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Skybox.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Smoke.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Smoke.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Stone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Stone.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/StoneEnvMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/StoneEnvMap.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/StoneEnvMapSmall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/StoneEnvMapSmall.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/StoneSmall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/StoneSmall.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/StoneTiled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/StoneTiled.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/StoneTiledH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/StoneTiledH.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Terrain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Terrain.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/UrhoDecal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/UrhoDecal.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/UrhoDecalAlpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/UrhoDecalAlpha.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/VColUnlit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/VColUnlit.xml -------------------------------------------------------------------------------- /Bin/Data/Materials/Water.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Materials/Water.xml -------------------------------------------------------------------------------- /Bin/Data/Textures/BrightDay1_NegX.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/BrightDay1_NegX.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/BrightDay1_NegY.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/BrightDay1_NegY.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/BrightDay1_NegZ.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/BrightDay1_NegZ.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/BrightDay1_PosX.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/BrightDay1_PosX.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/BrightDay1_PosY.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/BrightDay1_PosY.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/BrightDay1_PosZ.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/BrightDay1_PosZ.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/Editor/EditorIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/Editor/EditorIcons.png -------------------------------------------------------------------------------- /Bin/Data/Textures/Editor/EditorIcons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/Editor/EditorIcons.xml -------------------------------------------------------------------------------- /Bin/Data/Textures/Editor/NoPreviewAvailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/Editor/NoPreviewAvailable.png -------------------------------------------------------------------------------- /Bin/Data/Textures/Flare.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/Flare.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/HeightMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/HeightMap.png -------------------------------------------------------------------------------- /Bin/Data/Textures/Jack_body_color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/Jack_body_color.jpg -------------------------------------------------------------------------------- /Bin/Data/Textures/Jack_face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/Jack_face.jpg -------------------------------------------------------------------------------- /Bin/Data/Textures/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/Logo.png -------------------------------------------------------------------------------- /Bin/Data/Textures/Logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/Logo.xml -------------------------------------------------------------------------------- /Bin/Data/Textures/LogoLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/LogoLarge.png -------------------------------------------------------------------------------- /Bin/Data/Textures/LogoLarge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/LogoLarge.xml -------------------------------------------------------------------------------- /Bin/Data/Textures/Mushroom.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/Mushroom.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/NinjaSnowWar/CloudPlane.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/NinjaSnowWar/CloudPlane.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/NinjaSnowWar/HealthBarBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/NinjaSnowWar/HealthBarBorder.png -------------------------------------------------------------------------------- /Bin/Data/Textures/NinjaSnowWar/HealthBarInside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/NinjaSnowWar/HealthBarInside.png -------------------------------------------------------------------------------- /Bin/Data/Textures/NinjaSnowWar/Ninja.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/NinjaSnowWar/Ninja.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/NinjaSnowWar/Sight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/NinjaSnowWar/Sight.png -------------------------------------------------------------------------------- /Bin/Data/Textures/NinjaSnowWar/Sight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/NinjaSnowWar/Sight.xml -------------------------------------------------------------------------------- /Bin/Data/Textures/NinjaSnowWar/Snow.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/NinjaSnowWar/Snow.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/NinjaSnowWar/SnowCrate.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/NinjaSnowWar/SnowCrate.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/OldUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/OldUI.png -------------------------------------------------------------------------------- /Bin/Data/Textures/OldUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/OldUI.xml -------------------------------------------------------------------------------- /Bin/Data/Textures/Skybox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/Skybox.xml -------------------------------------------------------------------------------- /Bin/Data/Textures/Smoke.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/Smoke.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/StoneDiffuse.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/StoneDiffuse.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/StoneNormal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/StoneNormal.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/TerrainDetail1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/TerrainDetail1.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/TerrainDetail2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/TerrainDetail2.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/TerrainDetail3.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/TerrainDetail3.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/TerrainWeights.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/TerrainWeights.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/TouchInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/TouchInput.png -------------------------------------------------------------------------------- /Bin/Data/Textures/UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/UI.png -------------------------------------------------------------------------------- /Bin/Data/Textures/UI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/UI.xml -------------------------------------------------------------------------------- /Bin/Data/Textures/UrhoDecal.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/UrhoDecal.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/UrhoDecalAlpha.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/UrhoDecalAlpha.dds -------------------------------------------------------------------------------- /Bin/Data/Textures/UrhoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/UrhoIcon.png -------------------------------------------------------------------------------- /Bin/Data/Textures/WaterNoise.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Textures/WaterNoise.dds -------------------------------------------------------------------------------- /Bin/Data/UI/DefaultStyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/DefaultStyle.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorContextMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorContextMenu.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorHierarchyWindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorHierarchyWindow.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorIcons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorIcons.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorInspectorWindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorInspectorWindow.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorInspector_Attribute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorInspector_Attribute.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorInspector_Style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorInspector_Style.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorInspector_Variable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorInspector_Variable.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorMaterialWindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorMaterialWindow.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorPreferencesDialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorPreferencesDialog.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorQuickMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorQuickMenu.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorResourceBrowser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorResourceBrowser.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorResourceFilterWindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorResourceFilterWindow.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorSettingsDialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorSettingsDialog.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorSpawnWindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorSpawnWindow.xml -------------------------------------------------------------------------------- /Bin/Data/UI/EditorViewport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/EditorViewport.xml -------------------------------------------------------------------------------- /Bin/Data/UI/MessageBox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/MessageBox.xml -------------------------------------------------------------------------------- /Bin/Data/UI/OldStyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/OldStyle.xml -------------------------------------------------------------------------------- /Bin/Data/UI/ScreenJoystick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/ScreenJoystick.xml -------------------------------------------------------------------------------- /Bin/Data/UI/ScreenJoystickSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/ScreenJoystickSettings.xml -------------------------------------------------------------------------------- /Bin/Data/UI/ScreenJoystickSettings_NinjaSnowWar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/ScreenJoystickSettings_NinjaSnowWar.xml -------------------------------------------------------------------------------- /Bin/Data/UI/ScreenJoystickSettings_Samples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/ScreenJoystickSettings_Samples.xml -------------------------------------------------------------------------------- /Bin/Data/UI/ScreenJoystick_NinjaSnowWar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/ScreenJoystick_NinjaSnowWar.xml -------------------------------------------------------------------------------- /Bin/Data/UI/ScreenJoystick_Samples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/UI/ScreenJoystick_Samples.xml -------------------------------------------------------------------------------- /Bin/Data/Urho2D/Aster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/Aster.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/Ball.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/Box.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/GoldIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/GoldIcon.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/GoldIcon.scml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/GoldIcon.scml -------------------------------------------------------------------------------- /Bin/Data/Urho2D/GoldIcon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/GoldIcon.xml -------------------------------------------------------------------------------- /Bin/Data/Urho2D/GoldIcon/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/GoldIcon/1.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/GoldIcon/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/GoldIcon/2.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/GoldIcon/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/GoldIcon/3.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/GoldIcon/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/GoldIcon/4.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/GoldIcon/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/GoldIcon/5.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/fire.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/fire.pex -------------------------------------------------------------------------------- /Bin/Data/Urho2D/greenspiral.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/greenspiral.pex -------------------------------------------------------------------------------- /Bin/Data/Urho2D/greenspiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/greenspiral.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp.scml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp.scml -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp.txt -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp.xml -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp_blood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp_blood.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp_body.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp_footbig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp_footbig.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp_footsmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp_footsmall.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp_handbig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp_handbig.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp_handsmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp_handsmall.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp_handthrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp_handthrow.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp_head.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp_headangry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp_headangry.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/imp/imp_headblink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/imp/imp_headblink.png -------------------------------------------------------------------------------- /Bin/Data/Urho2D/sun.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/sun.pex -------------------------------------------------------------------------------- /Bin/Data/Urho2D/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/Data/Urho2D/sun.png -------------------------------------------------------------------------------- /Bin/ParticleEditor2D.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/ParticleEditor2D.exe -------------------------------------------------------------------------------- /Bin/QtCore4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/QtCore4.dll -------------------------------------------------------------------------------- /Bin/QtGui4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/QtGui4.dll -------------------------------------------------------------------------------- /Bin/msvcp110.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/msvcp110.dll -------------------------------------------------------------------------------- /Bin/msvcr110.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Bin/msvcr110.dll -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/License.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Readme.md -------------------------------------------------------------------------------- /Source/Tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/ColorVarianceEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/ColorVarianceEditor.cpp -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/ColorVarianceEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/ColorVarianceEditor.h -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/EmitterAttributeEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/EmitterAttributeEditor.cpp -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/EmitterAttributeEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/EmitterAttributeEditor.h -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/FloatEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/FloatEditor.cpp -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/FloatEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/FloatEditor.h -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Images/Icon.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Images/New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Images/New.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Images/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Images/Open.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Images/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Images/Save.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Images/SaveAs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Images/SaveAs.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Images/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Images/Settings.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Images/SplashScreen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Images/SplashScreen.jpg -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Images/ZoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Images/ZoomIn.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Images/ZoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Images/ZoomOut.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Images/ZoomReset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Images/ZoomReset.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/IntEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/IntEditor.cpp -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/IntEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/IntEditor.h -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Main.cpp -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/MainWindow.cpp -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/MainWindow.h -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/ParticleAttributeEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/ParticleAttributeEditor.cpp -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/ParticleAttributeEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/ParticleAttributeEditor.h -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/ParticleEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/ParticleEditor.cpp -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/ParticleEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/ParticleEditor.h -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/ParticleEffectEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/ParticleEffectEditor.cpp -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/ParticleEffectEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/ParticleEffectEditor.h -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Resources.qrc -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/ScrollAreaWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/ScrollAreaWidget.cpp -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/ScrollAreaWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/ScrollAreaWidget.h -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/ValueVarianceEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/ValueVarianceEditor.cpp -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/ValueVarianceEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/ValueVarianceEditor.h -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Vector2Editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Vector2Editor.cpp -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/Vector2Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/Vector2Editor.h -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/Hmovetoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/Hmovetoolbar.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/Hsepartoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/Hsepartoolbar.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/Vmovetoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/Vmovetoolbar.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/Vsepartoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/Vsepartoolbar.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/branch_closed-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/branch_closed-on.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/branch_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/branch_closed.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/branch_open-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/branch_open-on.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/branch_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/branch_open.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/checkbox.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/close.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/down_arrow.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/down_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/down_arrow_disabled.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/left_arrow.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/left_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/left_arrow_disabled.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/right_arrow.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/right_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/right_arrow_disabled.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/sizegrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/sizegrip.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/stylesheet-branch-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/stylesheet-branch-end.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/stylesheet-branch-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/stylesheet-branch-more.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/stylesheet-vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/stylesheet-vline.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/transparent.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/undock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/undock.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/up_arrow.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/rc/up_arrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/rc/up_arrow_disabled.png -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/style.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/style.qrc -------------------------------------------------------------------------------- /Source/Tools/ParticleEditor2D/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster2013/ParticleEditor2D/HEAD/Source/Tools/ParticleEditor2D/style.qss --------------------------------------------------------------------------------