We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.

Create a Group and assign Objects to a Group via puzzles

Home Forums General Questions Create a Group and assign Objects to a Group via puzzles

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #83413
    johngrigni
    Customer

    Is there a way to assign an Object to a Group using puzzles?
    Is there a way to create a new Group using puzzles?

    If not then I would like to add this as a feature request.

    #83421
    visualizer
    Customer

    aah interesting !

    #83424

    We’ll think about it!

    Meanwhile here is the exec script setup to add / remove objects to/from a group.

    const groups = app.scene.getObjectByName('Cube').groupNames;
    
    // add to group "New Group"
    groups.push("New Group");
    
    // remove from group "New Group"
    const index = groups.indexOf("New Group");
    if (index >= 0)
        groups.splice(index, 1);

    Soft8Soft Tech Chief
    Want more Verge3D updates? Follow me on X, Facebook, or LinkedIn

    #83442
    kdv
    Participant

    Is there a way to assign an Object to a Group using puzzles?
    Is there a way to create a new Group using puzzles?

    https://www.soft8soft.com/topic/gliftek-plugin-pack-object-management/

    Puzzles and JS coding. Fast and expensive.

    If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.

    #83447
    johngrigni
    Customer

    Thank you!

    Is this compatible with verge 4.10?

    #83448
    kdv
    Participant

    Didn’t tested on my own with 4.10. But why not? They in S8S changed nothing in groups menagement.

    Puzzles and JS coding. Fast and expensive.

    If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.

    #83449
    johngrigni
    Customer

    I just bought the plug-in, I’ll let you know if there are any problems.

    Again, thank you!

    #83450
    kdv
    Participant

    I’ll let you know if

    It’s not my plugin. Contact its author if there are any problems :unsure:

    Puzzles and JS coding. Fast and expensive.

    If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.