editor seems to almost working

This commit is contained in:
Tubix
2024-12-17 22:08:17 +00:00
parent 4b25ee98c5
commit 739e5b8b9d
324 changed files with 30253 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package alternativa.engine3d.errors
{
import alternativa.engine3d.core.Object3D;
import alternativa.utils.TextUtils;
public class Object3DHierarchyError extends Engine3DError
{
public var object:Object3D;
public function Object3DHierarchyError(param1:Object3D = null, param2:Object3D = null)
{
super(TextUtils.insertVars("Object3D %1. Object %2 cannot be added",param2,param1),param2);
this.object = param1;
this.name = "Object3DHierarchyError";
}
}
}