mirror of https://github.com/AxioDL/metaforce.git
Updated submodules
This commit is contained in:
parent
247e80fc1a
commit
6e5b82bc15
|
@ -6,7 +6,7 @@ bl_info = {
|
|||
"name": "HECL",
|
||||
"author": "Jack Andersen <jackoalan@gmail.com>",
|
||||
"version": (1, 0),
|
||||
"blender": (2, 74),
|
||||
"blender": (2, 75),
|
||||
"tracker_url": "https://github.com/RetroView/hecl/issues/new",
|
||||
"location": "Properties > Scene > HECL",
|
||||
"description": "Enables blender to gather meshes, materials, and textures for hecl",
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit dac1dde4681fa16527a3e56f3e354892fe5f8979
|
||||
Subproject commit 13d545c3fd6c9889109dc64b035040b9d4741ed3
|
|
@ -1 +1 @@
|
|||
Subproject commit 5b38596595a0b457ce617b36e1c7fa23620303fc
|
||||
Subproject commit b5d96f70409751689253d869bfa27909147da83c
|
|
@ -448,6 +448,19 @@ public:
|
|||
*/
|
||||
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
|
||||
* @return Absolute path reference
|
||||
|
|
Loading…
Reference in New Issue