23.11.2023, 10:53
(Dieser Beitrag wurde zuletzt bearbeitet: 23.11.2023, 10:55 von Leora Jacobus.)
Ich hatte da für "Leoras Beautiful People" in Otterland ein Plakat gemacht - funzte gut!
Hatte eine Grafik 1024x1024 Pixel mit 3x3 Feldern gemacht (jeweils 2 Frauen sind ein Feld) dann ...
- in Würfel 2m x 2m x 2cm - Script als inhalt
Würfel transparen nur Textur auf der Vorderseite (mit 3 Reihen a 3 Bilder)
PosterLBP3x3F1024 by Leora Jacobus, auf Flickr
// anim SMOOTH Script
// All scripts have a default state, this will be
// the first code executed.
default
{
// state_entry() is an event handler, it executes
// whenever a state is entered.
state_entry()
{
// llSetTextureAnim() is a function that animates a texture on a face.
llSetTextureAnim( ANIM_ON | LOOP, ALL_SIDES, 3, 3, 0.0, 9.0, 0.5
);
// animate the script to scroll across all the faces.
}
}
Hatte eine Grafik 1024x1024 Pixel mit 3x3 Feldern gemacht (jeweils 2 Frauen sind ein Feld) dann ...
- in Würfel 2m x 2m x 2cm - Script als inhalt
Würfel transparen nur Textur auf der Vorderseite (mit 3 Reihen a 3 Bilder)
PosterLBP3x3F1024 by Leora Jacobus, auf Flickr
// anim SMOOTH Script
// All scripts have a default state, this will be
// the first code executed.
default
{
// state_entry() is an event handler, it executes
// whenever a state is entered.
state_entry()
{
// llSetTextureAnim() is a function that animates a texture on a face.
llSetTextureAnim( ANIM_ON | LOOP, ALL_SIDES, 3, 3, 0.0, 9.0, 0.5
);
// animate the script to scroll across all the faces.
}
}