diff --git a/README.md b/README.md index 4bfab4d..58cb8b5 100644 --- a/README.md +++ b/README.md @@ -81,8 +81,8 @@ If you want to replace a file with a `.remap` file, you must create your own `.r ## Sample mods These mods are included in the `sample_mods` directory -### FPS++ -Disables 4xMSAA in performance mode, FSR 2.2 is enabled and resolution scale can be adjusted with up/down arrow keys. +### LightlyWeathered +Time, weather and music changes when entering a new zone. ## SimpleControls Simplifies the controls. Weapon is always ready when not sprinting, arm stamina is only consumed while aiming. Bolt- and pump- action weapons automatically chamber next round and reload automatically with a single reload button press. \ No newline at end of file diff --git a/sample_mods/FPS++/mod.txt b/sample_mods/FPS++/mod.txt deleted file mode 100644 index 01124bc..0000000 --- a/sample_mods/FPS++/mod.txt +++ /dev/null @@ -1,7 +0,0 @@ -[mod] -name="FPS++" -id="fps-plus-plus" -version="0.0.1" - -[autoload] -0="res://mods/FPS++/Main.gd" \ No newline at end of file diff --git a/sample_mods/FPS++/mods/FPS++/Camera.gd b/sample_mods/FPS++/mods/FPS++/Camera.gd deleted file mode 100644 index ea1c568..0000000 --- a/sample_mods/FPS++/mods/FPS++/Camera.gd +++ /dev/null @@ -1,9 +0,0 @@ -extends "res://Scripts/Camera.gd" - -func ScopeDOF(delta): - super(delta) - RenderingServer.viewport_set_scaling_3d_scale(currentRID, 1.0) - -func ResetDOF(delta): - super(delta) - RenderingServer.viewport_set_scaling_3d_scale(currentRID, 1.0) \ No newline at end of file diff --git a/sample_mods/FPS++/mods/FPS++/Main.gd b/sample_mods/FPS++/mods/FPS++/Main.gd deleted file mode 100644 index 189d20d..0000000 --- a/sample_mods/FPS++/mods/FPS++/Main.gd +++ /dev/null @@ -1,11 +0,0 @@ -extends Node -func _ready(): - overrideScript("res://FPS++/World.gd") - overrideScript("res://FPS++/Camera.gd") - queue_free() - -func overrideScript(overrideScriptPath : String): - var script : Script = load(overrideScriptPath) - script.reload() - var parentScript = script.get_base_script(); - script.take_over_path(parentScript.resource_path) \ No newline at end of file diff --git a/sample_mods/FPS++/mods/FPS++/World.gd b/sample_mods/FPS++/mods/FPS++/World.gd deleted file mode 100644 index fe88898..0000000 --- a/sample_mods/FPS++/mods/FPS++/World.gd +++ /dev/null @@ -1,13 +0,0 @@ -extends "res://Scripts/World.gd" - -func ExecuteStandardRendering(value: bool) -> void: - super(value) - var currentRID = get_tree().get_root().get_viewport_rid() - RenderingServer.viewport_set_scaling_3d_scale(currentRID, 1.0) - RenderingServer.viewport_set_msaa_3d(currentRID, RenderingServer.VIEWPORT_MSAA_4X) - -func ExecutePerformanceRendering(value: bool) -> void: - super(value) - var currentRID = get_tree().get_root().get_viewport_rid() - RenderingServer.viewport_set_scaling_3d_scale(currentRID, 1.0) - RenderingServer.viewport_set_msaa_3d(currentRID, RenderingServer.VIEWPORT_MSAA_DISABLED)