mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
removed dependency from directory
This commit is contained in:
@@ -15,7 +15,18 @@ namespace vb01{
|
||||
this->orientation=orientation;
|
||||
}
|
||||
|
||||
Node::~Node(){}
|
||||
Node::~Node(){
|
||||
for(Light *l : lights)
|
||||
delete l;
|
||||
for(Mesh *m : meshes)
|
||||
delete m;
|
||||
for(ParticleEmitter *p : emitters)
|
||||
delete p;
|
||||
for(Text *t : texts)
|
||||
delete t;
|
||||
for(Node *c : children)
|
||||
delete c;
|
||||
}
|
||||
|
||||
void Node::update(){
|
||||
if(visible){
|
||||
|
||||
Reference in New Issue
Block a user