Added the camera class
Added the DDS Texture Loading for future use Added the gamepad class for future use Added first child method to the scenegraph Added RGB to intensity and lerp methods to the shared methods class Added the terrain node class with normals Fixed issue with submeshnode not passing the world transform to the actual meshes
This commit is contained in:
@ -77,4 +77,14 @@ SceneNodePointer SceneGraph::Find(wstring name)
|
||||
}
|
||||
}
|
||||
return foundValue;
|
||||
}
|
||||
|
||||
SceneNodePointer SceneGraph::GetFirstChild()
|
||||
{
|
||||
SceneNodePointer firstChild = nullptr;
|
||||
if (_children.size() > 0)
|
||||
{
|
||||
firstChild = _children.front();
|
||||
}
|
||||
return firstChild;
|
||||
}
|
Reference in New Issue
Block a user