Marked all (probably) functions that take regular string instead of std::fs::path as deprecated
This commit is contained in:
@@ -14,11 +14,11 @@ namespace OpenVulkano::Scene
|
||||
class MeshWriter
|
||||
{
|
||||
public:
|
||||
static void WriteAsOBJ(Geometry* geometry, const std::string& filePath);
|
||||
static void WriteAsUSD(Geometry* geometry, const std::string& filePath);
|
||||
static void WriteObjAsZip(Geometry* geometry, const std::string& texturePath, const std::string& zipPath);
|
||||
static void WriteAsUSDZ(Geometry* geometry, const std::string& texturePath, const std::string& usdzPath);
|
||||
static void WriteAsFBX(Geometry* geometry, const std::string& texturePath, const std::string& fbxPath);
|
||||
static void WriteAsSTL(Geometry* geometry, const std::string& filePath, bool binary);
|
||||
static void WriteAsOBJ(Geometry* geometry, const std::string& filePath) [[deprecated]];
|
||||
static void WriteAsUSD(Geometry* geometry, const std::string& filePath) [[deprecated]];
|
||||
static void WriteObjAsZip(Geometry* geometry, const std::string& texturePath, const std::string& zipPath) [[deprecated]];
|
||||
static void WriteAsUSDZ(Geometry* geometry, const std::string& texturePath, const std::string& usdzPath) [[deprecated]];
|
||||
static void WriteAsFBX(Geometry* geometry, const std::string& texturePath, const std::string& fbxPath) [[deprecated]];
|
||||
static void WriteAsSTL(Geometry* geometry, const std::string& filePath, bool binary) [[deprecated]];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user