Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes of file paths #150

Merged
merged 2 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[gd_scene load_steps=2 format=3 uid="uid://cl416gdb1fgwr"]

[ext_resource type="PackedScene" uid="uid://d7te75il06t7" path="res://addons/maaacks_game_template/base/scenes/Menus/OptionsMenu/OptionControl/OptionControl.tscn" id="1_16hlr"]
[ext_resource type="PackedScene" uid="uid://d7te75il06t7" path="res://addons/maaacks_game_template/base/scenes/menus/options_menu/option_control/option_control.tscn" id="1_16hlr"]

[node name="OptionControl" instance=ExtResource("1_16hlr")]
custom_minimum_size = Vector2(0, 28)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[gd_scene load_steps=2 format=3 uid="uid://bsxh6v7j0257h"]

[ext_resource type="PackedScene" uid="uid://d7te75il06t7" path="res://addons/maaacks_game_template/base/scenes/Menus/OptionsMenu/OptionControl/OptionControl.tscn" id="1_8rnmo"]
[ext_resource type="PackedScene" uid="uid://d7te75il06t7" path="res://addons/maaacks_game_template/base/scenes/menus/options_menu/option_control/option_control.tscn" id="1_8rnmo"]

[node name="OptionControl" instance=ExtResource("1_8rnmo")]

Expand Down
2 changes: 1 addition & 1 deletion addons/maaacks_game_template/docs/ExistingProject.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ These instructions assume starting with just the contents of `addons/`. This wil
5. Add readable names for input actions to the controls menu.


1. Open `input_options_menu.tscn` (or `master_options_menu.tscn`, which contains an instance of the scene).
1. Open `input_options_menu.tscn` (or `master_options_menu_with_tabs.tscn`, which contains an instance of the scene).
2. Select the `Controls` node.
3. Update the `Action Name Map` to show readable names for the project's input actions.
1. The keys are the project's input action names, while the values are the names shown in the controls menu.
Expand Down
2 changes: 1 addition & 1 deletion addons/maaacks_game_template/docs/NewProject.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ These instructions assume starting with the entire contents of the project folde
4. Add readable names for input actions to the controls menu.


1. Open `input_options_menu.tscn` (or `master_options_menu.tscn`, which contains an instance of the scene).
1. Open `input_options_menu.tscn` (or `master_options_menu_with_tabs.tscn`, which contains an instance of the scene).
2. Select the `Controls` node.
3. Update the `Action Name Map` to show readable names for the project's input actions.
1. The keys are the project's input action names, while the values are the names shown in the controls menu.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[gd_scene load_steps=3 format=3 uid="uid://b4r3gcnm31uo6"]

[ext_resource type="PackedScene" uid="uid://1e3vf4u3brfm" path="res://addons/maaacks_game_template/examples/scenes/Menus/OptionsMenu/Input/InputOptionsMenu.tscn" id="1_pi4g6"]
[ext_resource type="PackedScene" uid="uid://cl416gdb1fgwr" path="res://addons/maaacks_game_template/base/scenes/Menus/OptionsMenu/OptionControl/SliderOptionControl.tscn" id="2_ax2ge"]
[ext_resource type="PackedScene" uid="uid://1e3vf4u3brfm" path="res://addons/maaacks_game_template/examples/scenes/menus/options_menu/input/input_options_menu.tscn" id="1_pi4g6"]
[ext_resource type="PackedScene" uid="uid://cl416gdb1fgwr" path="res://addons/maaacks_game_template/base/scenes/menus/options_menu/option_control/slider_option_control.tscn" id="2_ax2ge"]

[node name="Controls" instance=ExtResource("1_pi4g6")]

Expand Down