mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-18 22:45:24 +00:00
Updated submodules
This commit is contained in:
@@ -6,7 +6,7 @@ bl_info = {
|
|||||||
"name": "HECL",
|
"name": "HECL",
|
||||||
"author": "Jack Andersen <jackoalan@gmail.com>",
|
"author": "Jack Andersen <jackoalan@gmail.com>",
|
||||||
"version": (1, 0),
|
"version": (1, 0),
|
||||||
"blender": (2, 74),
|
"blender": (2, 75),
|
||||||
"tracker_url": "https://github.com/RetroView/hecl/issues/new",
|
"tracker_url": "https://github.com/RetroView/hecl/issues/new",
|
||||||
"location": "Properties > Scene > HECL",
|
"location": "Properties > Scene > HECL",
|
||||||
"description": "Enables blender to gather meshes, materials, and textures for hecl",
|
"description": "Enables blender to gather meshes, materials, and textures for hecl",
|
||||||
|
|||||||
2
hecl/extern/Athena
vendored
2
hecl/extern/Athena
vendored
Submodule hecl/extern/Athena updated: dac1dde468...13d545c3fd
2
hecl/extern/RetroCommon
vendored
2
hecl/extern/RetroCommon
vendored
Submodule hecl/extern/RetroCommon updated: 5b38596595...b5d96f7040
@@ -448,6 +448,19 @@ public:
|
|||||||
*/
|
*/
|
||||||
inline bool isRoot() const {return m_relPath.empty();}
|
inline bool isRoot() const {return m_relPath.empty();}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Return new ProjectPath with extension added
|
||||||
|
* @param ext file extension to add
|
||||||
|
* @return new path with extension
|
||||||
|
*/
|
||||||
|
inline ProjectPath getWithExtension(const SystemChar* ext) const
|
||||||
|
{
|
||||||
|
ProjectPath pp(*this);
|
||||||
|
pp.m_relPath += ext;
|
||||||
|
pp.m_absPath += ext;
|
||||||
|
return pp;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Access fully-canonicalized absolute path
|
* @brief Access fully-canonicalized absolute path
|
||||||
* @return Absolute path reference
|
* @return Absolute path reference
|
||||||
|
|||||||
Reference in New Issue
Block a user