3D Universe - "glue to Floor" utility does not work with the new G8.1 models

Wont even load, stating it needs G8 character.  So, load G8F into a scene, works fine. Load G8.1F into same scene and it wont load for that instance.

Is there an update planned for yesterday?

Peace,

V

Comments

  • jag11jag11 Posts: 885

    I don´t have such tool, but maybe this script can help you until you get an update for 8.1 figures.

    Just add a "Script IDE" pane and paste the following code and excute it or save as a .DSA file.

    HTH

    var selectedNode = null;var figure = null;if (Scene.getNumSelectedNodes() > 0) {    selectedNode = Scene.getSelectedNode(0);    figure = selectedNode.getSkeleton();    if (figure && figure.className() == "DzFigure") {        var option = MessageBox.question("What do you want to do?", "Question", "Hack figure id", "Restore figure id", "Cancel");        switch (option) {            case 0:                if (figure.name == "Genesis8_1Female") {                    figure.name = "Genesis8Female";                    print("Change successfull.");                } else {                    print("already done");                }                break;            case 1:                if (figure.name == "Genesis8Female") {                    figure.name = "Genesis8_1Female";                    print("Restore successfull.");                } else {                    print("already done");                }                break;            default:                break;        }    }} else {    MessageBox.critical("No figure selected", "Error", "OK");}

     

  • ViallyVially Posts: 343

    Actually I think I may have figured it out for a "until it's updated" solution...

    G81F is essentially the same as G8F, so I'm doing the animation on G8F, then will save, and pull it overe to G81F... appears to more or less work.

     

    Thanks for the reply

    V

Sign In or Register to comment.