Gamestudio Links
Zorro Links
Newest Posts
Help with plotting multiple ZigZag
by degenerate_762. 04/30/24 23:23
M1 Oversampling
by 11honza11. 04/30/24 08:16
Trading Journey
by howardR. 04/28/24 09:55
Zorro Trader GPT
by TipmyPip. 04/27/24 13:50
Data from CSV not parsed correctly
by jcl. 04/26/24 11:18
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (AndrewAMD), 946 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
firatv, wandaluciaia, Mega_Rod, EternallyCurious, howardR
19050 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 4 of 8 1 2 3 4 5 6 7 8
Re: Tron effects : [Re: Kartoffel] #415692
01/22/13 15:21
01/22/13 15:21
Joined: May 2009
Posts: 5,370
Caucasus
3run Offline
Senior Expert
3run  Offline
Senior Expert

Joined: May 2009
Posts: 5,370
Caucasus
OK, so for example, if I need some glowing splashes on the box, I need to pain those splashes on the texture, and then, make then black on the alpha channel?


Looking for free stuff?? Take a look here: http://badcom.at.ua
Support me on: https://boosty.to/3rung
Re: Tron effects : [Re: Kartoffel] #415693
01/22/13 15:22
01/22/13 15:22
Joined: Apr 2008
Posts: 2,488
ratchet Offline OP
Expert
ratchet  Offline OP
Expert

Joined: Apr 2008
Posts: 2,488
Wow laugh
that's it a real bloom effect.

I never seen that effect on any 3DGS project (or i simply missed them) !

I think it should be part of the next 3DGS official download laugh

It's so usefull for ancient magic, futurist things and levels or simply to make some retro glowing games.

Last edited by ratchet; 01/22/13 15:23.
Re: Tron effects : [Re: ratchet] #415698
01/22/13 15:47
01/22/13 15:47
Joined: Jun 2009
Posts: 2,210
Bavaria, Germany
Kartoffel Offline
Expert
Kartoffel  Offline
Expert

Joined: Jun 2009
Posts: 2,210
Bavaria, Germany
Originally Posted By: 3run
OK, so for example, if I need some glowing splashes on the box, I need to pain those splashes on the texture, and then, make then black on the alpha channel?

I'm not 100% sure what you mean but I think you understood it right grin

It's simple: full alpha = now glow, no alpha = max glow

in gimp for example I would create a new, transparent layer (which will be the glow mask), paint the parts which should be illuminated and the use selection from alpha.
Now you just have to select the base layer and hit 'del' to delete the selected parts. These will glow then laugh

Of course it is important that the file format supports alpha.

@ratchet thanks for the kind words smile
I'll try to make a simple (but similar) bloom-shader for you tongue
With this the glow effect should look nice.

Originally Posted By: ratchet
It's so usefull for ancient magic, futurist things and levels or simply to make some retro glowing games.
The main idea of bloom is using it on the whole scene, not just specific parts like glowing stripes wink
With this all bright areas of the screen will look bright - and this makes the whole scene seem more realistic.
For my bloom shader I tried to make the effect intensive and noticable but still smooth, so without having a brightness overkill grin


POTATO-MAN saves the day! - Random
Re: Tron effects : [Re: Kartoffel] #415699
01/22/13 15:49
01/22/13 15:49
Joined: May 2009
Posts: 5,370
Caucasus
3run Offline
Senior Expert
3run  Offline
Senior Expert

Joined: May 2009
Posts: 5,370
Caucasus
Nice man, are you going to share this? blush


Looking for free stuff?? Take a look here: http://badcom.at.ua
Support me on: https://boosty.to/3rung
Re: Tron effects : [Re: 3run] #415705
01/22/13 15:57
01/22/13 15:57
Joined: Jun 2009
Posts: 2,210
Bavaria, Germany
Kartoffel Offline
Expert
Kartoffel  Offline
Expert

Joined: Jun 2009
Posts: 2,210
Bavaria, Germany
Originally Posted By: 3run
Nice man, are you going to share this? blush

the object shader?
yes, of course. That's why I created it.

my bloom shader?
yes, but that probably needs some time and it won't be 100% the same.
(the one I'm using is pretty complex, because it's using multiple bloom layers)

my pp-shader pipeline?
no.
I'm sorry but I just won't share the whole thing.


POTATO-MAN saves the day! - Random
Re: Tron effects : [Re: Kartoffel] #415706
01/22/13 16:00
01/22/13 16:00
Joined: May 2009
Posts: 5,370
Caucasus
3run Offline
Senior Expert
3run  Offline
Senior Expert

Joined: May 2009
Posts: 5,370
Caucasus
Originally Posted By: Kartoffel
my pp-shader pipeline?
no.
I'm sorry but I just won't share the whole thing.
No man, I don't need your whole pipeline grin And I don't need bloom as well, only the glow shader.


Looking for free stuff?? Take a look here: http://badcom.at.ua
Support me on: https://boosty.to/3rung
Re: Tron effects : [Re: 3run] #415707
01/22/13 16:48
01/22/13 16:48
Joined: Jun 2009
Posts: 2,210
Bavaria, Germany
Kartoffel Offline
Expert
Kartoffel  Offline
Expert

Joined: Jun 2009
Posts: 2,210
Bavaria, Germany
okay, here you (two) go: download (~1.14 Mb)

...and what it includes / supports:
  • per pixel lighting, diffuse and specular (blinn-phong model)
  • all light types (directional- [sun], point- and spotlights)
  • normalmapping, 2nd skin is used as normalmap
  • some little stuff like overall-light-brightness and alpha-clip
  • ambient lighting; the material's and the entity's ambient values are added together
  • and the self illumination effect, of course; controlled by the alpha value as I've explained before

All the settings can be done by using the #defines in the shader file so have a look at it.
To disable normalmapping for example just comment the line: #define EnableNormalmapping

I also generated a quick normal-map to test it and for showing you the effect wink

At the moment it doesn't support fog I still have to do this, but for now this should be enough for you to start using the shader.

Last edited by Kartoffel; 01/22/13 16:56. Reason: my bad grammar...

POTATO-MAN saves the day! - Random
Re: Tron effects : [Re: Kartoffel] #415708
01/22/13 17:04
01/22/13 17:04
Joined: May 2009
Posts: 5,370
Caucasus
3run Offline
Senior Expert
3run  Offline
Senior Expert

Joined: May 2009
Posts: 5,370
Caucasus
Thank you, I appreciate it.


Looking for free stuff?? Take a look here: http://badcom.at.ua
Support me on: https://boosty.to/3rung
Re: Tron effects : [Re: 3run] #415743
01/23/13 09:31
01/23/13 09:31
Joined: Apr 2008
Posts: 2,488
ratchet Offline OP
Expert
ratchet  Offline OP
Expert

Joined: Apr 2008
Posts: 2,488
@Kartoffel:
Thanks a lot, that really kind, specially for the time you put on it laugh
The shader is not for me also, and i hope it to be in the official 3DGS shader library soon. I don't think i'm the only one that would like to use Glow on a game.

----------

I tested it, and it's good, but i don't see a lot the bloom factor , perhaps i will use it combined with a lot more Glowing one for special objects ?


On the image upper, as you can see on horizontal platforms you can run on them, the white rectangular parts are really glwoing a lot , perhaps it comes from a big Bloom effect on the scene ?

( I'll test your shader in some basic flat poly models to see how it runs already on a game scene )

Last edited by ratchet; 01/23/13 09:53.
Re: Tron effects : [Re: ratchet] #415770
01/23/13 13:56
01/23/13 13:56
Joined: Jun 2009
Posts: 2,210
Bavaria, Germany
Kartoffel Offline
Expert
Kartoffel  Offline
Expert

Joined: Jun 2009
Posts: 2,210
Bavaria, Germany
What I've uploaded is just the objectshader, no bloom.
It 'only' illuminates the glowing parts and adds no bloom effect to it.


POTATO-MAN saves the day! - Random
Page 4 of 8 1 2 3 4 5 6 7 8

Moderated by  Blink, Hummel, Superku 

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