About to refactor all the tools to python.

This commit is contained in:
2023-10-22 00:59:04 -05:00
parent b9493840f4
commit cf9dd63148
18 changed files with 354 additions and 333 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());