Themabewertung:
  • 0 Bewertung(en) - 0 im Durchschnitt
  • 1
  • 2
  • 3
  • 4
  • 5
Schwenk-Skript Standventilator?
#1
Brick 
Hab stundenlang vergeblich gesucht, gibt es das irgendwo?
Zitieren
#2
Hallo Arche ;D

Vielleicht wäre ein bisschen mehr Info, was genau der Ventalitor machen soll, nicht schlecht ;D
Signatur
Have a nice Day ;D

>> BogusMusikRausch jeweils Donnerstag um 20 Uhr in Uwes KeulenBar

Tschöö

Bogus | PinguinsReisen.de | M: @gse@norden.social
[-] The following 1 user says Thank You to Bogus Curry for this post:
  • DJ Archie
Zitieren
#3
Suche nunmehr zweierlei, zum einen ein Schwenk-Skript, es soll dazu dienen, eine Kombination aus Plakat und Besucherdisplay horizontal im Viertelkreis von links nach rechts sowie umgekehrt schwenken zu lassen, zum anderen such ich Tisch- und Standventilatoren, die schwenken ja auch. Wink
[-] The following 1 user says Thank You to DJ Archie for this post:
  • Bogus Curry
Zitieren
#4
Lightbulb 
Swing script

Code:
integer swing=FALSE;        //So it starts out NOT swinging
float time=0.1;             //Decreasing this (on it's own) makes the swing move FASTER and vice versa
integer steps=250;           //The total number of steps in the swing's path. More steps=smoother swing. More steps (alone) means slower swing too - time for a complete swing cycle is steps * time (so 4.8 s with the default settings).
integer swingDegrees = 25;  //How far from the vertical the swing moves

//If you play from here on down you might break the script. Do so at your own risk. There are no comments - just to encourage you NOT to play.

integer i=1;
float swingRad;
vector normal;

rotation Inverse(rotation r)
{
    r.x = -r.x;
    r.y = -r.y;
    r.z = -r.z;
    return r;
}
rotation GetParentRot()
{
    return Inverse(llGetLocalRot())*llGetRot();
}
SetLocalRot(rotation x)
{
    llSetRot(x*Inverse(GetParentRot()));
}

default
{
    state_entry()
    {
        normal = llRot2Euler(llGetRot());
        swingRad=DEG_TO_RAD*swingDegrees;
        llSetTouchText("Swing");
    }
    touch_start(integer num)
    {
        if(swing)
        {
            swing=FALSE;
            llSetTouchText("Swing");
        }
        else
        {
            swing=TRUE;
            llSetTouchText("Stop swing");
            llSetTimerEvent(time);
        }
    }
    timer()
    {
        float stepOffset=(float)i/steps*TWO_PI;
        if(i>steps) i=1;
        if(swing==FALSE && (i==steps || i==steps/2))
        {
            llSetTimerEvent(0.0);
            SetLocalRot(llEuler2Rot(<normal.x, normal.y, normal.z + swingRad*llSin(stepOffset)>));
        } else
        {
            SetLocalRot(llEuler2Rot(<normal.x, normal.y, normal.z + swingRad*llSin(stepOffset)>));
            i++;
        }
    }
    moving_end()
    {
        normal=llRot2Euler(llGetRot());
    }
}
[-] The following 2 users say Thank You to DJ Archie for this post:
  • Bogus Curry, Dorena Verne
Zitieren


Möglicherweise verwandte Themen…
Thema Verfasser Antworten Ansichten Letzter Beitrag
Brick Skript Grafikwechsel? DJ Archie 6 485 23.11.2023, 20:56
Letzter Beitrag: Anachron

Gehe zu:


Benutzer, die gerade dieses Thema anschauen: 1 Gast/Gäste