Gamestudio Links
Zorro Links
Newest Posts
loading historical data 1st time
by AndrewAMD. 04/14/23 12:54
Trade at bar open
by juanex. 04/13/23 19:43
Bug in Highpass2 filter
by rki. 04/13/23 09:54
Adding Limit Orders For IB
by scatters. 04/11/23 16:16
FisherN
by rki. 04/11/23 08:38
AUM Magazine
Latest Screens
SHADOW (2014)
DEAD TASTE
Tactics of World War I
Hecknex World
Who's Online Now
0 registered members (), 938 guests, and 4 spiders.
Key: Admin, Global Mod, Mod
Newest Members
rki, FranzIII, indonesiae, The_Judge, storrealba
18919 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Animated textures [Zone of Enders] #102760
12/19/06 10:16
12/19/06 10:16
Joined: Jan 2005
Posts: 79
T
taipan Offline OP
Junior Member
taipan  Offline OP
Junior Member
T

Joined: Jan 2005
Posts: 79
I have for long wondered how you can make animated textures on a character like in Zone of Enders. For you who have not seen it i have screens from another game called RF online: http://www.mmorpgitalia.it/forum/showthread.php?t=85475

The red lines are like streeks that circle around the cannons texture all the time and "glowing". How would i do this without any specialeffects? I doesnt necesseraly need to glow like an aura but i want to know how animation is possible.

Have a nice christmas holiday people


- A 3D world can be flawless...I want to live there
Re: Animated textures [Zone of Enders] [Re: taipan] #102761
12/19/06 17:37
12/19/06 17:37
Joined: Dec 2005
Posts: 414
Munich, Germany
R
Robotronic Offline
Senior Member
Robotronic  Offline
Senior Member
R

Joined: Dec 2005
Posts: 414
Munich, Germany
You could use pixel_to _bitmap, or maybe more simple use different skins. They can be animated simply like this (example from the manual):

action animate
{
while(1)
{
my.skin += time;
if (my.skin > ent_skins(my))
{
my.frame -= ent_skins(my);
}
wait(1);
}
}


Moderated by  HeelX, rvL_eXile 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1