summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorOwl <isaclien9752@gmail.com>2025-08-23 12:37:51 -0400
committerOwl <isaclien9752@gmail.com>2025-08-23 12:37:51 -0400
commit0ab9e972cb4a4128c2041f6da580a72515b3db64 (patch)
tree1a79d85db13b9714af806b54358fda15aca2ddae /test.py
parenta5bdfdab2ec68ebfe99535a54b3b0cd8b95a87d6 (diff)
downloadblenxy-0ab9e972cb4a4128c2041f6da580a72515b3db64.tar.gz
blenxy-0ab9e972cb4a4128c2041f6da580a72515b3db64.zip
Some changes to the BCK exporter
Diffstat (limited to 'test.py')
-rw-r--r--test.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/test.py b/test.py
deleted file mode 100644
index db5e2a5..0000000
--- a/test.py
+++ /dev/null
@@ -1,29 +0,0 @@
-from . import bck_funcs
-
-print(bck_funcs.smg_bck_raw.anim_data)
-print(bck_funcs.smg_bck_anim.anim_data)
-
-# I think I am making my own way to handle bytes
-# ~ class owl_byte(int):
- # ~ def __str__(self):
- # ~ return "%0X" % (self)
-
-# ~ # I think I am making my own way to print bytes
-# ~ # the default printing is awful to look at and I need rapid inspection
-# ~ class owl_bytes(bytearray):
- # ~ def __str__(self):
- # ~ rtn = ""
- # ~ for i in range(len(self)):
- # ~ rtn += "%02X" % self[i]
- # ~ rtn += " "
- # ~ return rtn
-
-# ~ f = open("test.bin", "rb")
-# ~ byte_arr = owl_bytes(b"")
-# ~ byte = f.read(1)
-# ~ while (byte != b""):
- # ~ byte_arr += byte
- # ~ byte = f.read(1)
-# ~ f.close()
-
-# ~ print(byte_arr)