*TRAUM* Mutant Wings *Hawk Style* Version 1.0
*** Renns TRAUM ***
heya friends, this is my new Wing Set:
*TRAUM* MutantWings Hawk Set
comes with:
*Custom HUD*
+ Particle Menu
choose between: colors, textures, alpha, or on/off or reset
+ Mutation button
press this button and vampire wings will grow on your back
with particles, sound and animations
+ Sound on off button (if you dont like wing flap sound)
+ fly speed changer 0-100 (choose how fast you wana fly)
+ wing flap speed changer 0-100 (choose how fast your wings will flap)
+ hidable arrows button
hide your hud if you dont wana see it
---------------------------------------------------
---------------------------------------------------
here some little helping rules:
MOD & COPY
- pls make a copy before you wana change the size or design.
- pls ADD this product,
if you ADD you dont have the problem that you put something off.
- this is a 100% MESH product, if you use a older viewer possible you cant see the product.
be sure you use a actual viewer and it will work :)
- 100% unique TRAUM design.
if you have any questions pls feel free and let me know it. im happy if i can help.
send me easy a IM.. if im offline i will get a EMAIL about your messege so nothing goes lost.
i wish you a great time.
Renn Yifu
TRAUM
and what your dream ?
- Mutation Wing System
- 100% mesh
- 10 different particle styles
- hidable hud
- animated mesh
Beautiful but...texture? color change?
Just bought these wings, and they are gorgeous! I am having an issue with the HUD though, it doesn't seem to change the texture OR color of the wings. There seem to be a lot of choices on it for both textures AND colors, but I click away on it and it just never changes >.> Otherwise I'd give it five stars easily!
Absolutely beautiful, wrote a script to fix the one thing I was missing
The wings are absolutely gorgeous, and the HUD is easy to use (as well as nice to look at). My only problem with the wings was that I couldn't change the position when I was on the ground. I wanted them to be a bit more spread out, so I wrote this simple script and added it to the wings. It makes the wings respond to mouse clicks and cycle through three different postures (thanks for making them modifiable btw!):
integer x;
default
{
touch_start(integer total_number)
{
llSetLinkAlpha(LINK_SET, 0, ALL_SIDES);
if (x==0) { llSetAlpha(1,0); x=1; }
else if (x==1) { llSetAlpha(1,1); x=2; }
else if (x==2) { llSetAlpha(1,0); x=3; }
else { llSetLinkAlpha(2,1,0); x=0; }
}
}