Search the Community
Showing results for tags 'sleep'.
-
Hi guys, So, I have come across some great looking beds but I cannot find a lot of options when it comes to beds with sleep animations that actually are under a blanket? I have come across Bazar, Loft & Aria, Bellarose and Xplicit. All of these have great beds with sleep-under-blanket animations but I feel I need to see more before I cough up $500-$1200 (or more). It is a shame though that some other beds that actually look great but do not have sleep under blankets animations like Nutmeg, Zerkalo, Concept, Tarte, Trompe Loeil, Primpossible, Ariskea, Pilot and Mudhoney. Wondering if anyone knows other furniture makers who incorporate such animations? I do not mind PG or Adult. Thanks in advance! Andie
-
I need to find some sits or lying down that start from a standing position, but, animate to the pose. In other words, I am not standing and then suddenly on the ground. I have tried Abranimations. I found one lay down, but it looks like I died when laying down. I'd prefer laying on my side to on my back. Any help is so appreciated !
-
- animations
- poses
-
(and 4 more)
Tagged with:
-
If anyone's looking for a way to llSleep() their script, but don't want to prevent event queues from mounting up during this time-period, I made a function that you can just plop into your code and use in the same way as llSleep() and it'll get rid of the nastiest part of that function. It'll also work over midnight time crossings, so you can use it at any time, anywhere, and it'll function exactly as expected, to a very accurate measurement (less than 0.00000001 seconds inaccuracy). llWait(float wait_time) { float start_time = llGetGMTclock(); while(TRUE) { float current_time = llGetGMTclock(); if(current_time >= start_time) { if(current_time - start_time >= wait_time) return; } else { if( (86400.0 - start_time) + current_time >= wait_time ) return; } } }