Add and update name convention
Some checks failed
Some checks failed
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
extends Control
|
||||
|
||||
const GAMEPLAY_SCENES = {
|
||||
"match3": "res://scenes/game/gameplays/match3_gameplay.tscn",
|
||||
"clickomania": "res://scenes/game/gameplays/clickomania_gameplay.tscn"
|
||||
"match3": "res://scenes/game/gameplays/Match3Gameplay.tscn",
|
||||
"clickomania": "res://scenes/game/gameplays/ClickomaniaGameplay.tscn"
|
||||
}
|
||||
|
||||
var current_gameplay_mode: String
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
[gd_scene load_steps=4 format=3 uid="uid://dmwkyeq2l7u04"]
|
||||
[gd_scene load_steps=4 format=3 uid="uid://8c2w55brpwmm"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://bs4veuda3h358" path="res://scenes/game/game.gd" id="1_uwrxv"]
|
||||
[ext_resource type="PackedScene" path="res://scenes/ui/DebugToggle.tscn" id="3_debug"]
|
||||
|
||||
1
scenes/game/gameplays/ClickomaniaGameplay.gd.uid
Normal file
1
scenes/game/gameplays/ClickomaniaGameplay.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://bkheckv0upd82
|
||||
@@ -1,6 +1,6 @@
|
||||
[gd_scene load_steps=2 format=3 uid="uid://cl7g8v0eh3mam"]
|
||||
|
||||
[ext_resource type="Script" path="res://scenes/game/gameplays/clickomania_gameplay.gd" id="1_script"]
|
||||
[ext_resource type="Script" path="res://scenes/game/gameplays/ClickomaniaGameplay.gd" id="1_script"]
|
||||
|
||||
[node name="Clickomania" type="Node2D"]
|
||||
script = ExtResource("1_script")
|
||||
@@ -4,7 +4,7 @@ extends DebugMenuBase
|
||||
func _ready():
|
||||
# Set specific configuration for Match3DebugMenu
|
||||
log_category = "Match3"
|
||||
target_script_path = "res://scenes/game/gameplays/match3_gameplay.gd"
|
||||
target_script_path = "res://scenes/game/gameplays/Match3Gameplay.gd"
|
||||
|
||||
# Call parent's _ready
|
||||
super()
|
||||
|
||||
1
scenes/game/gameplays/Match3Gameplay.gd.uid
Normal file
1
scenes/game/gameplays/Match3Gameplay.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://dbbi8ooysxp7f
|
||||
@@ -1,6 +1,6 @@
|
||||
[gd_scene load_steps=3 format=3 uid="uid://b4kv7g7kllwgb"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://o8crf6688lan" path="res://scenes/game/gameplays/match3_gameplay.gd" id="1_mvfdp"]
|
||||
[ext_resource type="Script" uid="uid://o8crf6688lan" path="res://scenes/game/gameplays/Match3Gameplay.gd" id="1_mvfdp"]
|
||||
[ext_resource type="PackedScene" uid="uid://b76oiwlifikl3" path="res://scenes/game/gameplays/Match3DebugMenu.tscn" id="2_debug_menu"]
|
||||
|
||||
[node name="Match3" type="Node2D"]
|
||||
1
scenes/game/gameplays/Match3InputHandler.gd.uid
Normal file
1
scenes/game/gameplays/Match3InputHandler.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://ogm8w7l6bhif
|
||||
1
scenes/game/gameplays/Match3SaveManager.gd.uid
Normal file
1
scenes/game/gameplays/Match3SaveManager.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://duheejfr6de6x
|
||||
1
scenes/game/gameplays/Match3Validator.gd.uid
Normal file
1
scenes/game/gameplays/Match3Validator.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://dy3aym6riijct
|
||||
@@ -1 +0,0 @@
|
||||
uid://bapywtqdghjqp
|
||||
@@ -1,4 +1,4 @@
|
||||
[gd_scene load_steps=5 format=3 uid="uid://ci2gk11211n0d"]
|
||||
[gd_scene load_steps=5 format=3 uid="uid://bwvq7u0mv5dku"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://rvuchiy0guv3" path="res://scenes/main/Main.gd" id="1_0wfyh"]
|
||||
[ext_resource type="PackedScene" uid="uid://gbe1jarrwqsi" path="res://scenes/main/SplashScreen.tscn" id="1_o5qli"]
|
||||
|
||||
@@ -8,7 +8,7 @@ const MIN_GRID_SIZE := 3
|
||||
const MIN_TILE_TYPES := 3
|
||||
const SCENE_SEARCH_COOLDOWN := 0.5
|
||||
|
||||
@export var target_script_path: String = "res://scenes/game/gameplays/match3_gameplay.gd"
|
||||
@export var target_script_path: String = "res://scenes/game/gameplays/Match3Gameplay.gd"
|
||||
@export var log_category: String = "DebugMenu"
|
||||
|
||||
var match3_scene: Node2D
|
||||
|
||||
Reference in New Issue
Block a user