Jump to content

Recommended Posts

Posted

Hi,

 

i have a simple question: I want to move a model (with GoToPoint)

if i press the left mouse button, and play an animation while the model moves.

I did:

 

 

if (window:MouseHit(Key.LButton)) then

 

 

-- Target position (in place ATM)

local targetpos = Vec3(0,0,17)

-- Move model

player:GoToPoint(targetpos.x,targetpos.y,targetpos.z,1.1,1)

-- Animate model

local t = Time:GetCurrent()

player:SetAnimationFrame(t/100.0,1,1)

local playerpos = player:GetPosition(true)

 

end

 

 

My results moves the object, but the animation isn´t played well

(only if i press the mouse button again), and any correction did not work.

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.

×
×
  • Create New...