Gamestudio Links
Zorro Links
Newest Posts
AlpacaZorroPlugin v1.3.0 Released
by kzhao. 05/20/24 01:28
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (7th_zorro), 793 guests, and 1 spider.
Key: Admin, Global Mod, Mod
Newest Members
Hanky27, firatv, wandaluciaia, Mega_Rod, EternallyCurious
19051 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 2 1 2
[REQ] Particle Tutorial for lite-C (ENG/DE) #278030
07/11/09 21:18
07/11/09 21:18
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline OP
Expert
Rei_Ayanami  Offline OP
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Hello!
I have learned many things about Panels, medias and things like this.
Now, I want to learn something new smile - Particle
I searched in the AUM and in the manual, but I haven´t found anything for lite-C... So if anybody has a tutorial it would be very cool!
The best is in german for me of course wink.
-----------------------------------------------------------
Hallo!
Ich habe viel ber Panels, sounds(media) und andere Dinge dieser Art gelernt.
Nun möchte ich mehr lernen - und zwar: Particle
Ich habe im AUM und im Manual gekuckt aber nichts brauchbares für lite-C gefunden... Also wenn jemand ein Tutorial hat, wär das sehr cool wink. Am besten natürlich in Deutsch.

Last edited by Rei_Ayanami; 07/11/09 21:18.
Re: [REQ] Particle Tutorial for lite-C (ENG/DE) [Re: Rei_Ayanami] #278155
07/12/09 12:31
07/12/09 12:31
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline OP
Expert
Rei_Ayanami  Offline OP
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Does nobody work with effects in lite-C???

Re: [REQ] Particle Tutorial for lite-C (ENG/DE) [Re: Rei_Ayanami] #278157
07/12/09 13:07
07/12/09 13:07
Joined: Mar 2009
Posts: 276
Cebu City, Philippines
boyax Offline
Member
boyax  Offline
Member

Joined: Mar 2009
Posts: 276
Cebu City, Philippines
Have a look in AUM 64 Workshop. That will keep you started.

Hope that helps.

Re: [REQ] Particle Tutorial for lite-C (ENG/DE) [Re: boyax] #278160
07/12/09 13:27
07/12/09 13:27
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline OP
Expert
Rei_Ayanami  Offline OP
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
I have down this workshop - and it worked with some changes(like: my to *p) in LITE-C. I wan´t to programm it in Lite-C.

Re: [REQ] Particle Tutorial for lite-C (ENG/DE) [Re: Rei_Ayanami] #278163
07/12/09 13:42
07/12/09 13:42
Joined: Mar 2009
Posts: 276
Cebu City, Philippines
boyax Offline
Member
boyax  Offline
Member

Joined: Mar 2009
Posts: 276
Cebu City, Philippines
That's the only change I also observed. You have to use the Particle* p pointer when using it in the particles function...

Here's some code snippets
Code:
action particle_start // this can be a function as well
{
  ............................
  effect(particle_function, number_of_desired_particles, starting_position, initial_velocity);
}

function particle_function(PARTICLE* p) // this function is run by each and every particle
{
   // set the properties and the speed of the particles here
   ............................
   p.event = some_function;
}

function some_function(PARTICLE* P) // this (short) function tells the particles how to behave after they are emitted
{
  ............................
}



here's also some of dust particle thread. Maybe, you could get some idea on it.
particle

Cheers!

Re: [REQ] Particle Tutorial for lite-C (ENG/DE) [Re: boyax] #278167
07/12/09 13:47
07/12/09 13:47
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline OP
Expert
Rei_Ayanami  Offline OP
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
I have even read this thread - I always use the search funciton first. But I mean like a firework or other things wink

Re: [REQ] Particle Tutorial for lite-C (ENG/DE) [Re: Rei_Ayanami] #278229
07/12/09 18:27
07/12/09 18:27
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline OP
Expert
Rei_Ayanami  Offline OP
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Please look at my Question - Can anybody help me?

Re: [REQ] Particle Tutorial for lite-C (ENG/DE) [Re: Rei_Ayanami] #278299
07/13/09 02:26
07/13/09 02:26
Joined: Jul 2005
Posts: 38
N
ngisiger Offline
Newbie
ngisiger  Offline
Newbie
N

Joined: Jul 2005
Posts: 38
Maybe you can check out the Advanced Particle Effects which is in tutorial section of http://au.conitec.net/. It's in light C for A6, but most of the functionalities used in the code are basic, and you should be able to translate it to lite-C easiy.

Thomas

Re: [REQ] Particle Tutorial for lite-C (ENG/DE) [Re: ngisiger] #278326
07/13/09 07:08
07/13/09 07:08
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline OP
Expert
Rei_Ayanami  Offline OP
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
yeah, I´ve already downloaded it but it isn´t so easy - but i´ll get it. I have even an other tutorial downloaded from Kevin Sägesser. thanks to all!

Re: [REQ] Particle Tutorial for lite-C (ENG/DE) [Re: Rei_Ayanami] #280283
07/22/09 00:58
07/22/09 00:58
Joined: Sep 2007
Posts: 173
USA, Florida
3dworld Offline
Member
3dworld  Offline
Member

Joined: Sep 2007
Posts: 173
USA, Florida
There's any chance to get that tutorial in English please.


No matter what people tell you,  words and ideas can change the world.
Page 1 of 2 1 2

Moderated by  HeelX, Tobias_Runde 

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