Skip to content

Commit e9afbc0

Browse files
committed
Added new object python3_unigine_objectmeshdynamic
1 parent 7a342ea commit e9afbc0

File tree

5 files changed

+538
-7
lines changed

5 files changed

+538
-7
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,3 @@ $ docker run --rm -it -v `pwd`:/opt/sources sea5kg/unigine-editor-pluigns:v2.16.
5454

5555
https://ezgif.com/video-to-gif/
5656

57-
58-
```bash
59-
$ docker run --rm -it -v `pwd`:/opt/sources sea5kg/unigine-editor-pluigns:v2.16.1 ./build_plugin.py
60-
```
61-
62-

source/plugins/Sea5kg/Python3Scripting/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ add_library(${current_target} SHARED
123123
${PROJECT_SOURCE_DIR}/src/python3_wrapper/pytypesobjects/python3_unigine_uguid.cpp
124124
${PROJECT_SOURCE_DIR}/src/python3_wrapper/pytypesobjects/python3_unigine_material.cpp
125125
${PROJECT_SOURCE_DIR}/src/python3_wrapper/pytypesobjects/python3_unigine_materials.cpp
126-
# ${PROJECT_SOURCE_DIR}/src/python3_wrapper/pytypesobjects/python3_unigine_material_gen.cpp
127126
${PROJECT_SOURCE_DIR}/src/python3_wrapper/pytypesobjects/python3_unigine_node.cpp
127+
${PROJECT_SOURCE_DIR}/src/python3_wrapper/pytypesobjects/python3_unigine_objectmeshdynamic.cpp
128128
)
129129

130130
IF (WIN32)

source/plugins/Sea5kg/Python3Scripting/src/python3_wrapper/pytypesobjects/python3_pytypeobjects.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include "python3_unigine_materials.h"
55
#include "python3_unigine_material.h"
66
#include "python3_unigine_node.h"
7+
#include "python3_unigine_objectmeshdynamic.h"
78
#include "python3_unigine_uguid.h"
89

910
Python3PyTypeObjectAll::Python3PyTypeObjectAll() {
@@ -12,6 +13,7 @@ Python3PyTypeObjectAll::Python3PyTypeObjectAll() {
1213
m_vPyTypesObjects.push_back(new PyUnigine::Python3UnigineMaterial());
1314
m_vPyTypesObjects.push_back(new PyUnigine::Python3UnigineNode());
1415
m_vPyTypesObjects.push_back(new PyUnigine::Python3UnigineAssetManager());
16+
m_vPyTypesObjects.push_back(new PyUnigine::Python3UnigineObjectMeshDynamic());
1517
}
1618

1719
bool Python3PyTypeObjectAll::isReady() {

0 commit comments

Comments
 (0)