first commit

This commit is contained in:
2025-07-20 10:34:21 +02:00
commit a5634c4619
812 changed files with 61126 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
@tool
extends Control
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Script Spliter
# https://github.com/CodeNameTwister/Script-Spliter
#
# Script Spliter addon for godot 4
# author: "Twister"
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
@export var columns : SpinBox
@export var rows : SpinBox
func set_values(_columns : int, _rows : int) -> void:
columns.value = _columns
rows.value = _rows
func get_columns_value() -> int:
return max(columns.value, 1)
func get_rows_value() -> int:
return max(rows.value, 1)