├── .gitignore ├── FakeLightmap ├── BackGround.png ├── BaseMap.dds ├── FakeLightmap.ini ├── ForeGround.png ├── LightMap.hlsl ├── SliderA.png ├── SliderB.png ├── SliderG.png ├── SliderR.png └── draw_2d.hlsl ├── README.md ├── ResponsiveUI ├── Menu.ini └── draw_2d.hlsl └── ShapeKeys ├── Shape.ini ├── ShapeKey.hlsl ├── SliderImpactGenerator.py ├── WeaponRotate.hlsl ├── WeaponShapeKey.hlsl └── toBase85.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | \!_* 3 | DISABLED* -------------------------------------------------------------------------------- /FakeLightmap/BackGround.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/FakeLightmap/BackGround.png -------------------------------------------------------------------------------- /FakeLightmap/BaseMap.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/FakeLightmap/BaseMap.dds -------------------------------------------------------------------------------- /FakeLightmap/FakeLightmap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/FakeLightmap/FakeLightmap.ini -------------------------------------------------------------------------------- /FakeLightmap/ForeGround.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/FakeLightmap/ForeGround.png -------------------------------------------------------------------------------- /FakeLightmap/LightMap.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/FakeLightmap/LightMap.hlsl -------------------------------------------------------------------------------- /FakeLightmap/SliderA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/FakeLightmap/SliderA.png -------------------------------------------------------------------------------- /FakeLightmap/SliderB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/FakeLightmap/SliderB.png -------------------------------------------------------------------------------- /FakeLightmap/SliderG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/FakeLightmap/SliderG.png -------------------------------------------------------------------------------- /FakeLightmap/SliderR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/FakeLightmap/SliderR.png -------------------------------------------------------------------------------- /FakeLightmap/draw_2d.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/FakeLightmap/draw_2d.hlsl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/README.md -------------------------------------------------------------------------------- /ResponsiveUI/Menu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/ResponsiveUI/Menu.ini -------------------------------------------------------------------------------- /ResponsiveUI/draw_2d.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/ResponsiveUI/draw_2d.hlsl -------------------------------------------------------------------------------- /ShapeKeys/Shape.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/ShapeKeys/Shape.ini -------------------------------------------------------------------------------- /ShapeKeys/ShapeKey.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/ShapeKeys/ShapeKey.hlsl -------------------------------------------------------------------------------- /ShapeKeys/SliderImpactGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/ShapeKeys/SliderImpactGenerator.py -------------------------------------------------------------------------------- /ShapeKeys/WeaponRotate.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/ShapeKeys/WeaponRotate.hlsl -------------------------------------------------------------------------------- /ShapeKeys/WeaponShapeKey.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/ShapeKeys/WeaponShapeKey.hlsl -------------------------------------------------------------------------------- /ShapeKeys/toBase85.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinsOfSeven/SliderImpact/HEAD/ShapeKeys/toBase85.py --------------------------------------------------------------------------------