├── .gitignore ├── GIMI ├── Core │ ├── Debugger │ │ ├── Debugger.ini │ │ ├── Fonts │ │ │ ├── LiberationSans-Bold.dds │ │ │ └── LiberationSans-Bold.png │ │ ├── Notifications │ │ │ ├── CompatibilityMode.md │ │ │ ├── ErrorCompatibilityModeDisabled.md │ │ │ ├── ErrorOldVersionMod.md │ │ │ ├── ErrorOldVersionWWMI.md │ │ │ ├── HuntingModeGuide.md │ │ │ └── UserGuide.md │ │ ├── Shaders │ │ │ ├── Debugger.hlsl │ │ │ └── debug_cb.hlsl │ │ └── debug_cb.ini │ ├── GIMI │ │ ├── API.ini │ │ ├── Fonts │ │ │ ├── LiberationSans-Bold.dds │ │ │ └── LiberationSans-Bold.png │ │ ├── KeyBindings.ini │ │ ├── Libraries │ │ │ ├── FixDash.ini │ │ │ ├── HealthBar.ini │ │ │ ├── Help.ini │ │ │ ├── Includes.ini │ │ │ ├── Mouse.ini │ │ │ ├── ORFix.ini │ │ │ ├── ORFixAPI.ini │ │ │ ├── Offset.ini │ │ │ ├── Region.ini │ │ │ ├── Shaders │ │ │ │ └── Mouse.hlsl │ │ │ ├── TexFx │ │ │ │ ├── ChangeLog.md │ │ │ │ ├── Config.ini │ │ │ │ ├── DISABLED_Includes.ini │ │ │ │ ├── DISABLED_Keybindings.ini │ │ │ │ ├── LICENSE │ │ │ │ ├── Main.ini │ │ │ │ ├── README.md │ │ │ │ ├── d3dx_overrides.ini │ │ │ │ ├── denn_die_todten_reiten_schnell │ │ │ │ │ ├── PremadeEffects.ini │ │ │ │ │ ├── Textures │ │ │ │ │ │ └── LightningMask.dds │ │ │ │ │ └── int_opacity.zip │ │ │ │ └── hic_sunt_dracones │ │ │ │ │ ├── AnimatedOutlineFX.hlsl │ │ │ │ │ ├── ComponentFriendlyBuiltinShaders.ini │ │ │ │ │ ├── DefaultCustomShader.ini │ │ │ │ │ ├── Diffuse2SidedRegex.ini │ │ │ │ │ ├── Diffuse2SidedRegex53.ini │ │ │ │ │ ├── DiffusePixelShaderRegex.ini │ │ │ │ │ ├── DiffusePixelShaderRegex53.ini │ │ │ │ │ ├── DiffuseShaderTest1.hlsl │ │ │ │ │ ├── NatlanOutlineHull.hlsl │ │ │ │ │ ├── NatlanOutlineWithDiffuseColor0.hlsl │ │ │ │ │ ├── NatlanOutlineWithDiffuseColor1.hlsl │ │ │ │ │ ├── OutlineHull.hlsl │ │ │ │ │ ├── OutlineHull5.5.hlsl │ │ │ │ │ ├── OutlineHull_3_4.hlsl │ │ │ │ │ ├── OutlineHull_4_5.hlsl │ │ │ │ │ ├── OutlineHull_5_3.hlsl │ │ │ │ │ ├── OutlinePixelShaderRegex.ini │ │ │ │ │ ├── OutlinePixelShaderRegex53.ini │ │ │ │ │ ├── OutlineWithDiffuseColor0.hlsl │ │ │ │ │ ├── OutlineWithDiffuseColor0_4_5.hlsl │ │ │ │ │ ├── OutlineWithDiffuseColor0_5_3.hlsl │ │ │ │ │ ├── OutlineWithDiffuseColor1.hlsl │ │ │ │ │ ├── OutlineWithDiffuseColor1_4_5.hlsl │ │ │ │ │ ├── OutlineWithDiffuseColor1_5_3.hlsl │ │ │ │ │ └── UncensorWithToggles.ini │ │ │ └── Tracking.ini │ │ ├── Notifications │ │ │ ├── HuntingModeGuide.md │ │ │ └── UserGuide.md │ │ ├── Shaders │ │ │ └── TextPrinter.hlsl │ │ ├── d3dx_patch.ini │ │ ├── help.ini │ │ └── main.ini │ ├── Sucrose.png │ └── auto_update.xcmd ├── ShaderFixes │ ├── 3c0e13676d04987e-vs_replace.txt │ ├── Sucrose.png │ └── mouse.hlsl └── d3dx.ini ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/.gitignore -------------------------------------------------------------------------------- /GIMI/Core/Debugger/Debugger.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/Debugger/Debugger.ini -------------------------------------------------------------------------------- /GIMI/Core/Debugger/Fonts/LiberationSans-Bold.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/Debugger/Fonts/LiberationSans-Bold.dds -------------------------------------------------------------------------------- /GIMI/Core/Debugger/Fonts/LiberationSans-Bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/Debugger/Fonts/LiberationSans-Bold.png -------------------------------------------------------------------------------- /GIMI/Core/Debugger/Notifications/CompatibilityMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/Debugger/Notifications/CompatibilityMode.md -------------------------------------------------------------------------------- /GIMI/Core/Debugger/Notifications/ErrorCompatibilityModeDisabled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/Debugger/Notifications/ErrorCompatibilityModeDisabled.md -------------------------------------------------------------------------------- /GIMI/Core/Debugger/Notifications/ErrorOldVersionMod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/Debugger/Notifications/ErrorOldVersionMod.md -------------------------------------------------------------------------------- /GIMI/Core/Debugger/Notifications/ErrorOldVersionWWMI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/Debugger/Notifications/ErrorOldVersionWWMI.md -------------------------------------------------------------------------------- /GIMI/Core/Debugger/Notifications/HuntingModeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/Debugger/Notifications/HuntingModeGuide.md -------------------------------------------------------------------------------- /GIMI/Core/Debugger/Notifications/UserGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/Debugger/Notifications/UserGuide.md -------------------------------------------------------------------------------- /GIMI/Core/Debugger/Shaders/Debugger.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/Debugger/Shaders/Debugger.hlsl -------------------------------------------------------------------------------- /GIMI/Core/Debugger/Shaders/debug_cb.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/Debugger/Shaders/debug_cb.hlsl -------------------------------------------------------------------------------- /GIMI/Core/Debugger/debug_cb.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/Debugger/debug_cb.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/API.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/API.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Fonts/LiberationSans-Bold.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Fonts/LiberationSans-Bold.dds -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Fonts/LiberationSans-Bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Fonts/LiberationSans-Bold.png -------------------------------------------------------------------------------- /GIMI/Core/GIMI/KeyBindings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/KeyBindings.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/FixDash.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/FixDash.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/HealthBar.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/HealthBar.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/Help.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/Help.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/Includes.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/Includes.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/Mouse.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/Mouse.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/ORFix.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/ORFix.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/ORFixAPI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/ORFixAPI.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/Offset.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/Offset.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/Region.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/Region.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/Shaders/Mouse.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/Shaders/Mouse.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/ChangeLog.md -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/Config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/Config.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/DISABLED_Includes.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/DISABLED_Includes.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/DISABLED_Keybindings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/DISABLED_Keybindings.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/LICENSE -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/Main.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/Main.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/README.md -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/d3dx_overrides.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/d3dx_overrides.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/denn_die_todten_reiten_schnell/PremadeEffects.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/denn_die_todten_reiten_schnell/PremadeEffects.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/denn_die_todten_reiten_schnell/Textures/LightningMask.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/denn_die_todten_reiten_schnell/Textures/LightningMask.dds -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/denn_die_todten_reiten_schnell/int_opacity.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/denn_die_todten_reiten_schnell/int_opacity.zip -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/AnimatedOutlineFX.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/AnimatedOutlineFX.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/ComponentFriendlyBuiltinShaders.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/ComponentFriendlyBuiltinShaders.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/DefaultCustomShader.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/DefaultCustomShader.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/Diffuse2SidedRegex.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/Diffuse2SidedRegex.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/Diffuse2SidedRegex53.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/Diffuse2SidedRegex53.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/DiffusePixelShaderRegex.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/DiffusePixelShaderRegex.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/DiffusePixelShaderRegex53.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/DiffusePixelShaderRegex53.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/DiffuseShaderTest1.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/DiffuseShaderTest1.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/NatlanOutlineHull.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/NatlanOutlineHull.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/NatlanOutlineWithDiffuseColor0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/NatlanOutlineWithDiffuseColor0.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/NatlanOutlineWithDiffuseColor1.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/NatlanOutlineWithDiffuseColor1.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineHull.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineHull.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineHull5.5.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineHull5.5.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineHull_3_4.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineHull_3_4.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineHull_4_5.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineHull_4_5.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineHull_5_3.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineHull_5_3.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlinePixelShaderRegex.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlinePixelShaderRegex.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlinePixelShaderRegex53.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlinePixelShaderRegex53.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineWithDiffuseColor0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineWithDiffuseColor0.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineWithDiffuseColor0_4_5.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineWithDiffuseColor0_4_5.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineWithDiffuseColor0_5_3.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineWithDiffuseColor0_5_3.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineWithDiffuseColor1.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineWithDiffuseColor1.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineWithDiffuseColor1_4_5.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineWithDiffuseColor1_4_5.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineWithDiffuseColor1_5_3.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/OutlineWithDiffuseColor1_5_3.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/UncensorWithToggles.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/TexFx/hic_sunt_dracones/UncensorWithToggles.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Libraries/Tracking.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Libraries/Tracking.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Notifications/HuntingModeGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Notifications/HuntingModeGuide.md -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Notifications/UserGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Notifications/UserGuide.md -------------------------------------------------------------------------------- /GIMI/Core/GIMI/Shaders/TextPrinter.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/Shaders/TextPrinter.hlsl -------------------------------------------------------------------------------- /GIMI/Core/GIMI/d3dx_patch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/d3dx_patch.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/help.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/help.ini -------------------------------------------------------------------------------- /GIMI/Core/GIMI/main.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/GIMI/main.ini -------------------------------------------------------------------------------- /GIMI/Core/Sucrose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/Sucrose.png -------------------------------------------------------------------------------- /GIMI/Core/auto_update.xcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/Core/auto_update.xcmd -------------------------------------------------------------------------------- /GIMI/ShaderFixes/3c0e13676d04987e-vs_replace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/ShaderFixes/3c0e13676d04987e-vs_replace.txt -------------------------------------------------------------------------------- /GIMI/ShaderFixes/Sucrose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/ShaderFixes/Sucrose.png -------------------------------------------------------------------------------- /GIMI/ShaderFixes/mouse.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/ShaderFixes/mouse.hlsl -------------------------------------------------------------------------------- /GIMI/d3dx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/GIMI/d3dx.ini -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentNightSound/GIMI-Package/HEAD/README.md --------------------------------------------------------------------------------