| 693 | } |
| 694 | |
| 695 | IEntityNodePtr createStaticEntityWithModel(const std::string& model) |
| 696 | { |
| 697 | auto funcStaticClass = GlobalEntityClassManager().findClass("func_static"); |
| 698 | auto entity = GlobalEntityModule().createEntity(funcStaticClass); |
| 699 | entity->getEntity().setKeyValue("model", model); |
| 700 | return entity; |
| 701 | } |
| 702 | |
| 703 | SkinnedModel::Ptr getSkinnedModel(const IEntityNodePtr& entity) |
| 704 | { |
no test coverage detected