Jump to content

How to clone the loaded model?


Alex10
 Share

Recommended Posts

I want to clone the already loaded model and inserted into another location on the map. At the end of the time.

var loader = new BABYLON.AssetsManager(scene);var taskMesh = loader.addMeshTask('t3', "", "game/t3/", "t.babylon");taskMesh.onSuccess = function (task) {   task.loadedMeshes[0].position = new BABYLON.Vector3(0, 0, 0);   task.loadedMeshes[0].parent = camera;};

I have not found. Maybe something like this?

taskMesh.loadedMeshes[0].clone();
Link to comment
Share on other sites

mesh = loader.addMeshTask('enemy1', "", "/static/game/t3/", "untitled.babylon");mesh.onSuccess = function (task) {       task.loadedMeshes[0].position = new BABYLON.Vector3(25, 2, 20);};. . .. . .mesh.loadedMeshes[0].clone('new_mesh');

Error:

Uncaught TypeError: Cannot read property '0' of undefined
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...