Loading and using model assets generally involves the following two scenarios:
In the editor, models placed in the scene will be preloaded with the scene file. Follow the steps Assets Panel -> Left-click and drag the model thumbnail -> Drag to Viewport -> Release the left mouse button -> Adjust coordinates to place the model in the corresponding scene.
The editor cannot directly adjust the scale property of the model node. Therefore, in most cases, you need to drag the model node under an entity node and then adjust the scale property of the entity node.
In this case, you only need to find the specific node in the scene at runtime to get the corresponding model object.
// 根据节点名寻找模型节点
const model1 = scene.findEntityByName("ModelName");
// 根据节点路径寻找模型节点
const model2 = scene.findEntityByPath("ModelPath");
As long as we have the URL information of the model, we can easily load the model.
engine.resourceManager
.load({ url: "glTF's URL", type: AssetType.GLTF })
.then((glTF: GLTFResource) => {
// 获取 glTF 模型实例化的模型对象
const root = glTF.instantiateSceneRoot();
// 将模型对象添加到场景中
scene.addRootEntity(root);
});
In the editor, you can directly get the URL of the model asset (Assets Panel -> Right-click the model asset thumbnail -> Copy file info / Copy relative path):
For models not imported into the editor, the corresponding URL is the path where the model assets are stored.
When loading models, you can also get the loading progress of the total task/detailed task through the onProgress event.
this.engine.resourceManager
.load(["b.gltf"])
.onProgress(
(loaded, total) => {
console.log("task loaded:", loaded, "task total:", total);
},
(url, loaded, total) => {
console.log("task detail:", url, "loaded:", loaded, "total:", total);
}
The loaded model object will return a root node containing rendering information and animation information. Its usage is no different from ordinary nodes.
glTF may contain multiple scene root nodes sceneRoots
. Developers can manually select the root node they wish to instantiate.
engine.resourceManager
.load({ url: "glTF's URL", type: AssetType.GLTF })
.then((glTF: GLTFResource) => {
// 选择根节点数组中下标为 1 的模型对象,默认下标为 0
const root = glTF.instantiateSceneRoot(1);
// 将模型对象添加到场景中
scene.addRootEntity(root);
});
If the model carries animation information, you can get the Animator component from the root node and then choose to play any animation clip.
engine.resourceManager
.load({ url: "glTF's URL", type: AssetType.GLTF })
.then((glTF: GLTFResource) => {
// 获取 glTF 模型实例化的模型对象
const root = glTF.instantiateSceneRoot();
// 将模型对象添加到场景中
scene.addRootEntity(root);
// 获取 glTF 资产的动画信息
const { animations } = glTF;
// 获取模型对象挂载的动画组件
const animation = root.getComponent(Animator);
// 播放第一个动画
animation.playAnimationClip(animations[0].name);
});
The glTF multi-material extension can be used to switch materials.
engine.resourceManager
.load({ url: "glTF's URL", type: AssetType.GLTF })
.then((glTF: GLTFResource) => {
// 获取 glTF 模型实例化的模型对象
const root = glTF.instantiateSceneRoot();
// 将模型对象添加到场景中
scene.addRootEntity(root);
// 获取插件信息
const { extensionsData } = glTF;
// 根据插件信息切换材质
const variants: IGLTFExtensionVariants = extensionsData?.variants;
if (variants) {
const extensionData = extensionsData;
const replaceVariant = variants[0];
const { renderer, material } = replaceVariant;
renderer.setMaterial(material);
}
});