Skip to content

Commit 2f4b6b3

Browse files
committed
rename function
1 parent 115f415 commit 2f4b6b3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

LAppModelWrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static PyObject* PyLAppModel_LoadModelJson(PyLAppModelObject* self, PyObject* ar
6161
return NULL;
6262
}
6363

64-
self->model->LoadAssets(fileName);
64+
self->model->LoadModelJson(fileName);
6565

6666
Py_RETURN_NONE;
6767
}

Main/src/LAppModel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ LAppModel::~LAppModel()
8686
delete[] _tmpOrderedDrawIndices;
8787
}
8888

89-
void LAppModel::LoadAssets(const csmChar *fileName)
89+
void LAppModel::LoadModelJson(const csmChar *fileName)
9090
{
9191
// linux 下不支持对 "XXX/XXX.model.json/../" 的解析
9292
// 因此改用 cpp17 的标准库

Main/src/LAppModel.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class LAppModel : public Csm::CubismUserModel
4040
* @brief model3.jsonが置かれたディレクトリとファイルパスからモデルを生成する
4141
*
4242
*/
43-
void LoadAssets(const Csm::csmChar* fileName);
43+
void LoadModelJson(const Csm::csmChar* fileName);
4444

4545
/**
4646
* @brief レンダラを再構築する

0 commit comments

Comments
 (0)