1 Star 0 Fork 0

2144/ls_app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.cpp 970 Bytes
一键复制 编辑 原始数据 按行查看 历史
2144 提交于 2024-03-19 16:42 . ss
#include <assimp/scene.h>
#include <assimp/Importer.hpp>
#include <glm/glm.hpp>
#include <reactphysics3d/reactphysics3d.h>
#include <GLFW/glfw3.h>
#include <yaml-cpp/yaml.h>
#include <entt/entt.hpp>
#define STB_IMAGE_IMPLEMATION
#include <stb/stb_image.h>
#include "pch.h"
namespace rp3d=reactphysics3d;
int main(int argc ,char * argv[])
{
YAML::Node node;
node["name"]="fbz";
node["password"]="1234567";
YAML::Emitter emitter;
emitter<<node;
std::ofstream ofs("node");
ofs<<emitter.c_str();
ofs.flush();
ofs.close();
entt::registry m_rg;
m_rg.create();
rp3d::PhysicsCommon pycommon;
rp3d::PhysicsWorld* world=pycommon.createPhysicsWorld();
pycommon.destroyPhysicsWorld(world);
glfwInit();
Assimp::Importer importer;
const aiScene* scene=importer.ReadFile("1.fbx",1);
if(scene==nullptr)
{
LOGI("cannot find package");
}
importer.FreeScene();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/iamherer/ls_app.git
git@gitee.com:iamherer/ls_app.git
iamherer
ls_app
ls_app
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385