Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

Forums

OverviewFelgo 1 Support › Rotation And Linear Velocity Application on Created Entity

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #5765

    Pi

    Hi,

     

    I am making a basic shooter game where I need to create bullet on mouse click and shoot it. To create the bullets during runtime I’m using

    entityManager.createEntityFromUrlWithProperties()

     

    But when I trigger the rotation and linear impulse (tried with onBeginContact and a function in the entity) nothing happens. When I use the same code on an entity already loaded on the scene it works just fine, but not on the entity created at runtime. Is this a bug or am I doing something wrong here?

    boxCollider.body.rotation = 90;
    entity.rotation = 90;
    var localForwardVector = boxCollider.body.getWorldVector(Qt.point(1500,0));
    boxCollider.body.applyLinearImpulse(localForwardVector, boxCollider.body.getWorldCenter());
    
    
    #5777

    Alex
    Felgo Team

    HI,

    did you have a look at the source code of the CarChallenge demo game, in the Demo folder of the FelgoSDK?

    There we are doing something similar. Are you maybe applying the impulse before the component is loaded completely? In our demo we apply the impulse like this:

    // this code is part of Rocket.qml
    Component.onCompleted: {
      applyForwardImpulse();
    }
    
    function applyForwardImpulse() {
      var localForward = boxCollider.body.getWorldVector(Qt.point(1500,0));
      boxCollider.body.applyLinearImpulse(localForward, boxCollider.body.getWorldCenter());
    }

    Can you maybe post some more code so i can try to recreate your problem?

    Cheers,
    Alex

     

Viewing 2 posts - 1 through 2 (of 2 total)

RSS feed for this thread

You must be logged in to reply to this topic.

Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded