Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by EternallyCurious. 04/18/24 10:45
StartWeek not working as it should
by Zheka. 04/18/24 10:11
folder management functions
by VoroneTZ. 04/17/24 06:52
lookback setting performance issue
by 7th_zorro. 04/16/24 03:08
zorro 64bit command line support
by 7th_zorro. 04/15/24 09:36
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:48
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:46
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
3 registered members (MadJack, AndrewAMD, Quad), 540 guests, and 1 spider.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, 11honza11, ccorrea, sakolin, rajesh7827
19046 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Decal shadows bug #476022
01/18/19 23:05
01/18/19 23:05
Joined: Jul 2004
Posts: 785
Serbia
Iglarion Offline OP
User
Iglarion  Offline OP
User

Joined: Jul 2004
Posts: 785
Serbia
Hi Jcl,

I think I found a bug in decal shadows (already ask in this thred ) . Decal shadows at one moments stay on ground while ai keeps moving without shadows.
Here is a video:

From test level and from my game .

I can send you small test level if needs.


IGRAVISION Page - www.igravision.com
RPG project - The Battle For Forgol 92.75%
Re: Decal shadows bug [Re: Iglarion] #476085
01/25/19 20:09
01/25/19 20:09
Joined: Jul 2000
Posts: 27,978
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,978
Frankfurt
Are you moving the entity more than once per frame? This could cause such effects.

Re: Decal shadows bug [Re: jcl] #476087
01/25/19 21:17
01/25/19 21:17
Joined: Jul 2004
Posts: 785
Serbia
Iglarion Offline OP
User
Iglarion  Offline OP
User

Joined: Jul 2004
Posts: 785
Serbia
No, just one time per frame.


IGRAVISION Page - www.igravision.com
RPG project - The Battle For Forgol 92.75%
Re: Decal shadows bug [Re: Iglarion] #476092
01/26/19 06:24
01/26/19 06:24
Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
Superku Offline
Senior Expert
Superku  Offline
Senior Expert

Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
I had experienced that bug many years ago as well. It's easily reproducible, as in here:

Click to reveal..
Code:
///////////////////////////////
#include <acknex.h>
#include <default.c>
///////////////////////////////

void main()
{
	fps_max = 30;
	video_mode = 10;
	level_load(NULL);
	camera.arc = 40;
	camera.y = -512;
	camera.z = 128;
	camera.pan = 90;
	camera.tilt = -15;
	you = ent_create(CUBE_MDL,nullvector,NULL);
	your.scale_y = your.scale_x = 64;
	c_setminmax(you);
	set(you,POLYGON);
	me = ent_create(CUBE_MDL,vector(0,0,60),NULL);
	set(my,SHADOW);
	def_move();
	while(1)
	{
		draw_text("Hold [Space] to move the entity.",20,20,COLOR_RED);
		my.skill1 += key_space*10*time_step;
		var x = sinv(my.skill1);
		my.x = pow(abs(x),0.5)*sign(x)*512;
		if(key_ctrl) reset(my,SHADOW);
		else set(my,SHADOW);
		wait(1);
	}
}



"Falls das Resultat nicht einfach nur dermassen gut aussieht, sollten Sie nochmal von vorn anfangen..." - Manual

Check out my new game: Pogostuck: Rage With Your Friends
Re: Decal shadows bug [Re: Superku] #478225
09/21/19 21:04
09/21/19 21:04
Joined: Jul 2004
Posts: 785
Serbia
Iglarion Offline OP
User
Iglarion  Offline OP
User

Joined: Jul 2004
Posts: 785
Serbia
Hi Jcl.

Any news about this bug?


IGRAVISION Page - www.igravision.com
RPG project - The Battle For Forgol 92.75%
Re: Decal shadows bug [Re: Iglarion] #478231
09/23/19 08:24
09/23/19 08:24
Joined: Jul 2000
Posts: 27,978
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,978
Frankfurt
It is confirmed and on our To-Do list for the next A8 update - whenever that happens.

Re: Decal shadows bug [Re: jcl] #478233
09/23/19 10:27
09/23/19 10:27
Joined: Jul 2004
Posts: 785
Serbia
Iglarion Offline OP
User
Iglarion  Offline OP
User

Joined: Jul 2004
Posts: 785
Serbia
Ok, thanks.


IGRAVISION Page - www.igravision.com
RPG project - The Battle For Forgol 92.75%

Moderated by  jcl, Nems, Spirit, Tobias 

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