Remove Nz::String and Nz::StringStream
This commit is contained in:
@@ -8,9 +8,9 @@
|
||||
#define NAZARA_JOINT_HPP
|
||||
|
||||
#include <Nazara/Prerequisites.hpp>
|
||||
#include <Nazara/Core/String.hpp>
|
||||
#include <Nazara/Math/Matrix4.hpp>
|
||||
#include <Nazara/Utility/Node.hpp>
|
||||
#include <string>
|
||||
|
||||
namespace Nz
|
||||
{
|
||||
@@ -26,13 +26,13 @@ namespace Nz
|
||||
void EnsureSkinningMatrixUpdate() const;
|
||||
|
||||
const Matrix4f& GetInverseBindMatrix() const;
|
||||
String GetName() const;
|
||||
const std::string& GetName() const;
|
||||
Skeleton* GetSkeleton();
|
||||
const Skeleton* GetSkeleton() const;
|
||||
const Matrix4f& GetSkinningMatrix() const;
|
||||
|
||||
void SetInverseBindMatrix(const Matrix4f& matrix);
|
||||
void SetName(const String& name);
|
||||
void SetName(std::string name);
|
||||
|
||||
private:
|
||||
void InvalidateNode() override;
|
||||
@@ -40,7 +40,7 @@ namespace Nz
|
||||
|
||||
Matrix4f m_inverseBindMatrix;
|
||||
mutable Matrix4f m_skinningMatrix;
|
||||
String m_name;
|
||||
std::string m_name;
|
||||
Skeleton* m_skeleton;
|
||||
mutable bool m_skinningMatrixUpdated;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user