relics added

This commit is contained in:
2024-04-09 10:15:32 -05:00
parent 39157dded2
commit 6370bfaad7
43 changed files with 1639 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
@tool
extends RefCounted
var script_path : String
var todos : Array
func _init(script_path: String, todos: Array):
self.script_path = script_path
self.todos = todos
func get_short_path() -> String:
var temp_array := script_path.rsplit('/', false, 1)
var short_path : String
if not temp_array.size() > 1:
short_path = "(!)" + temp_array[0]
else:
short_path = temp_array[1]
return short_path