Page 1 of 1

Animated Mesh?

Posted: Tue Feb 18, 2020 3:51 pm
by Gusher Castaignede
Can we upload animated keyframed meshes yet? How are creators animating inworld? Any tips?

Re: Animated Mesh?

Posted: Tue Feb 18, 2020 3:58 pm
by Ilan Tochner
Hi Gusher,

Yes, you should be able to do so now.

Re: Animated Mesh?

Posted: Tue Feb 18, 2020 6:25 pm
by Gusher Castaignede
oh my goodness, yay!!

Re: Animated Mesh?

Posted: Sun Feb 23, 2020 7:46 pm
by Gusher Castaignede
Am struggling to figure why my basic keyframed animated cube doesn't
respond after uploading.... any ideas? I used the script below, but get
no response.... do I need a viewer to support animated meshes? What
am I missing?

////---------Script starts here ---- copy from here

float animation_speed = 0.5;
integer total_prims;
integer link_counter;

default
{ state_entry() { total_prims = llGetNumberOfPrims(); llSetTimerEvent(animation_speed ); } timer() { link_counter++; llSetLinkAlpha(LINK_SET, 0.0, ALL_SIDES); llSetLinkAlpha( link_counter,1.0, ALL_SIDES); if( link_counter == total_prims) { link_counter = 0; } }
}

//// -------- end of script --- copy up to here.