add create, append, remove, set_timeout, clear_timeout, get_children, refactor ul/ol and dynamic recounting
This commit is contained in:
@@ -10,9 +10,12 @@ static func lua_print(vm: LuauVM) -> int:
|
||||
message_parts.append(value_str)
|
||||
|
||||
var final_message = "\t".join(message_parts)
|
||||
print("GURT LOG: ", final_message)
|
||||
lua_print_direct(final_message)
|
||||
return 0
|
||||
|
||||
static func lua_print_direct(msg) -> void:
|
||||
print("GURT LOG: ", msg)
|
||||
|
||||
static func lua_value_to_string(vm: LuauVM, index: int) -> String:
|
||||
var lua_type = vm.lua_type(index)
|
||||
|
||||
@@ -84,4 +87,4 @@ static func table_to_string(vm: LuauVM, index: int, max_depth: int = 3, current_
|
||||
result += ", ..."
|
||||
|
||||
result += "}"
|
||||
return result
|
||||
return result
|
||||
|
||||
Reference in New Issue
Block a user