Font Testing

This commit is contained in:
2022-10-24 13:48:17 -07:00
parent e4806d380f
commit 6ba8720667
15 changed files with 270 additions and 93 deletions

View File

@ -152,8 +152,8 @@ Transform * Transform::getParent() {
Transform::~Transform() {
this->setParent(nullptr);
auto it = this->parent->children.begin();
while(it != this->parent->children.end()) {
auto it = this->children.begin();
while(it != this->children.end()) {
(*it)->setParent(nullptr);
++it;
}