summaryrefslogtreecommitdiff
path: root/client.gd
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-12-30 15:15:01 +0100
committerDaniel Weipert <git@mail.dweipert.de>2024-12-30 15:15:01 +0100
commite08a29e73ea4f7e6d78e8e7f5a6e7033dbc1f542 (patch)
tree966b95a7cdad16f7658d2e10cec6e549f3b98c17 /client.gd
parent6e2deea3d1b2fb4d79dac02a0d4310936c7f317c (diff)
next commitHEADmain
Diffstat (limited to 'client.gd')
-rw-r--r--client.gd33
1 files changed, 20 insertions, 13 deletions
diff --git a/client.gd b/client.gd
index 5025c8c..3a69e9d 100644
--- a/client.gd
+++ b/client.gd
@@ -21,19 +21,26 @@ func _ready() -> void:
#FileAccess.get_file_as_bytes("res://client_data/data/sprite/cursors.act")
#)
#)
- GATFormat.from_bytes(
- ByteStream.from_bytes(
- FileAccess.get_file_as_bytes("res://client_data/data/int_land02.gat")
- )
- )
- GNDFormat.from_bytes(
- ByteStream.from_bytes(
- FileAccess.get_file_as_bytes("res://client_data/data/int_land02.gnd")
- )
- )
- RSWFormat.from_bytes(
+ #GATFormat.from_bytes(
+ #ByteStream.from_bytes(
+ #FileAccess.get_file_as_bytes("res://client_data/data/int_land02.gat")
+ #)
+ #)
+ #GNDFormat.from_bytes(
+ #ByteStream.from_bytes(
+ #FileAccess.get_file_as_bytes("res://client_data/data/int_land02.gnd")
+ #)
+ #)
+ #RSWFormat.from_bytes(
+ #ByteStream.from_bytes(
+ ##FileAccess.get_file_as_bytes("res://client_data/data/int_land02.rsw")
+ #FileAccess.get_file_as_bytes("res://client_data/data/pay_dun00.rsw")
+ #)
+ #)
+ RSMFormat.from_bytes(
ByteStream.from_bytes(
- #FileAccess.get_file_as_bytes("res://client_data/data/int_land02.rsw")
- FileAccess.get_file_as_bytes("res://client_data/data/pay_dun00.rsw")
+ #FileAccess.get_file_as_bytes("res://client_data/data/model/prontera/chair_01.rsm")
+ FileAccess.get_file_as_bytes("res://client_data/data/model/izlude/iz_academy.rsm")
+ # TODO: find newer version rsm to test
)
)