About to refactor all the tools to python.

This commit is contained in:
2023-10-22 00:59:04 -05:00
parent a511c5c908
commit 702e320f63
20 changed files with 366 additions and 334 deletions

View File

@ -37,7 +37,6 @@ void TextureAsset::updateSync() {
void TextureAsset::updateAsync() {
if(this->state != 0x00) return;
this->state = 0x01;
std::cout << "Update texture tool" << std::endl;
this->loader.open();
this->buffer = (uint8_t*)memoryAllocate(this->loader.getSize());
this->loader.read(this->buffer, this->loader.getSize());