コード例 #1
0
void Transform::load(){
	for(NodeChild * child : children){
		NodeLoadable * nl = child->asNodeLoadable();
		if(nl != nullptr){
			nl->load();
		}
	}

	NodeLoadable::load();
}
コード例 #2
0
ファイル: Entity.cpp プロジェクト: seleb/Ludum-Dare-32
void Entity::load(){
	for(NodeChild * child : children){
		NodeLoadable * nl = dynamic_cast<NodeLoadable *>(child);
		if(nl != nullptr){
			nl->load();	
		}
	}
	
	NodeLoadable::load();
}