- fbx: add DOM classes for light and camera node attachments. Devise a new macro-based system to easily define dynamic fbx properties.

This commit is contained in:
Alexander Gessler
2012-08-10 22:58:54 +02:00
parent c126cfa1ff
commit ffbac847ef
4 changed files with 1486 additions and 1396 deletions

View File

@@ -104,6 +104,34 @@ CameraSwitcher::~CameraSwitcher()
}
// ------------------------------------------------------------------------------------------------
Camera::Camera(uint64_t id, const Element& element, const Document& doc, const std::string& name)
: NodeAttribute(id,element,doc,name)
{
}
// ------------------------------------------------------------------------------------------------
Camera::~Camera()
{
}
// ------------------------------------------------------------------------------------------------
Light::Light(uint64_t id, const Element& element, const Document& doc, const std::string& name)
: NodeAttribute(id,element,doc,name)
{
}
// ------------------------------------------------------------------------------------------------
Light::~Light()
{
}
}
}