Jump to content

Recommended Posts

Posted

Hallo, 

i have to different models with different skeleton .  if i set

hips = model.skeleton:FindBone("mixamorig:Hips")

the bone is found. 

 

But with the other model hips is not found if i set 

        local hips = model.skeleton:FindBone("Hips")

What could i do, that Hips will be found? 

Screenshot 2025-09-08 165849.png

Screenshot 2025-09-08 165916.png

Posted
    if self.sword then
        local hips = model.skeleton:FindBone("Hips")

        if hips == nil then 
        hips = model.skeleton:FindBone("mixamorig:Hips")
        end
        if hips == nil then 
        hips = model.skeleton:FindBone("mixamo:Hips")
        end
        if hips == nil then 
        hips = model.skeleton:FindBone("Hips")
        end
	.......
	end

ok it seems like this . now Hips are found . 

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