Gamestudio Links
Zorro Links
Newest Posts
How to select between IB accounts by script?
by Jack_Zodiac. 06/12/26 23:17
Zorro tutorial ideas?
by pr0logic. 06/12/26 13:36
Max Number of Strategies in /Strategy folder
by Martin_HH. 06/12/26 08:50
Stooq now requires an API key
by AndrewAMD. 06/11/26 17:55
Z9 getting Error 058
by k_ivan. 06/10/26 14:38
ZorroGPT
by TipmyPip. 06/10/26 13:07
Z12 live performance
by alx. 06/09/26 20:42
Lapsa's very own thread
by Lapsa. 06/08/26 22:41
AUM Magazine
Latest Screens
Dorifto samurai
Shadow 2
Rocker`s Revenge
Stug 3 Stormartillery
Who's Online Now
3 registered members (Quad, TipmyPip, pr0logic), 2,041 guests, and 4 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Student_64151, Koti, curry, DeepxKalsi, Samed
19219 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
simple motion blur filter? #408931
10/09/12 13:56
10/09/12 13:56
Joined: Aug 2011
Posts: 133
Germany, Supergeheimes Hinter-...
G
gameplan Offline OP
Member
gameplan  Offline OP
Member
G

Joined: Aug 2011
Posts: 133
Germany, Supergeheimes Hinter-...
Hi,

does anyone know how to add a simple motion blur effect? When the camera moves very quickly in my game, it looks stagnantly/crappy, even if I have more than 60 fps.


Version: A8 free
OS: Windows 10
Re: simple motion blur filter? [Re: gameplan] #408938
10/09/12 14:49
10/09/12 14:49
Joined: Jul 2008
Posts: 2,112
Germany
rayp Offline

X
rayp  Offline

X

Joined: Jul 2008
Posts: 2,112
Germany
Maybe this is what you looking 4:

Code:
function post_motionblur(on)
{
	if(on == 1)
	{
		pp_set(camera,mtl_blur);
		while(1)
		{
			mtl_blur.skill1 = floatv(mouse_force.x*25+mouse_force.y*25);
			wait(1);
		}
	}
	else
	{
		proc_kill(4);
		pp_set(camera,NULL);
	}
}

[...]

post_motionblur(1); //turn the effect on

[...]

post_motionblur(0); //turn it off


Posted by Alibaba and optimized by Rondidon 4 3d fps

greets


Acknex umgibt uns...zwischen Dir, mir, dem Stein dort...
"Hey Griswold ... where u gonna put a tree that big ?"
1998 i married my loved wife ... Sheeva from Mortal Kombat, not Evil-Lyn as might have been expected
rayp.flags |= UNTOUCHABLE;
Re: simple motion blur filter? [Re: rayp] #408956
10/09/12 19:55
10/09/12 19:55
Joined: Aug 2011
Posts: 133
Germany, Supergeheimes Hinter-...
G
gameplan Offline OP
Member
gameplan  Offline OP
Member
G

Joined: Aug 2011
Posts: 133
Germany, Supergeheimes Hinter-...
Thank you. I think this is what I was searching for. But I noticed that I am unable to use it at this moment with gamestudio A8 free.


Version: A8 free
OS: Windows 10
Re: simple motion blur filter? [Re: gameplan] #409005
10/10/12 10:07
10/10/12 10:07
Joined: Mar 2011
Posts: 3,150
Budapest
sivan Offline
Expert
sivan  Offline
Expert

Joined: Mar 2011
Posts: 3,150
Budapest
no shaders in free, so you can't use effects... you need Commercial at least.


Free world editor for 3D Gamestudio: MapBuilder Editor
Re: simple motion blur filter? [Re: sivan] #409012
10/10/12 12:24
10/10/12 12:24
Joined: May 2009
Posts: 5,377
Caucasus
3run Offline
Senior Expert
3run  Offline
Senior Expert

Joined: May 2009
Posts: 5,377
Caucasus
search AUM for fake motion blur effect


Looking for free stuff?? Take a look here: http://badcom.at.ua
Support me on: https://boosty.to/3rung
Re: simple motion blur filter? [Re: 3run] #409013
10/10/12 12:29
10/10/12 12:29
Joined: Mar 2011
Posts: 3,150
Budapest
sivan Offline
Expert
sivan  Offline
Expert

Joined: Mar 2011
Posts: 3,150
Budapest
yes maybe there is one. last time I found out a fake hdr effect laugh but not implemented yet.


Free world editor for 3D Gamestudio: MapBuilder Editor

Moderated by  HeelX, Lukas, rayp, Rei_Ayanami, Superku, Tobias, TWO, VeT 

Gamestudio download | 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