Jump to content

Recommended Posts

Posted
local leftleg
local rightleg

function Script:Start()
    leftleg=self.entity:FindChild("hip.l") 
    rightleg=self.entity:FindChild("hip.r") 

end

function Script:UpdatePhysics()
    leftleg:PlayAnimation("walk",0.02)
    rightleg:PlayAnimation("walk",0.02)

end

^ doesn't work

function Script:UpdatePhysics()
        self.entity:PlayAnimation("walk",0.02)
end

^ work

 

I also don't get any nil errors.

I am not silly. My english is just not really great. T_T

But I'm learning! :D

Posted

Thank you very much.

function Script:UpdatePhysics()
        leftleg:SetAnimationFrame(Time:GetCurrent()*speed,0.5,name)
        rightleg:SetAnimationFrame(Time:GetCurrent()*speed,0.5,name)

Now it works. 

  • Like 2

I am not silly. My english is just not really great. T_T

But I'm learning! :D

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...