:( Help error.

Blitz3D Forums/Blitz3D Programming/:( Help error.

Yue(Posted 2016) [#1]



RemiD(Posted 2016) [#2]
I have never seen this error... Maybe it is from the Ashadow lib ?


Midimaster(Posted 2016) [#3]
perhaps from a recursive function call?


Flanker(Posted 2016) [#4]
Yes probably from a recursive function, a function calling itself too much time until the stack is full :

Test()

Function Test()
	Test()
End Function


Check if you have such functions and if everything is alright with them.


Yue(Posted 2016) [#5]
Oops,
Yes, apparently is an error with ashadows , and the same is true devil system will remove these libraries .


BlitzMan(Posted 2016) [#6]
Have you tried baking some shadows.If you are using shadows from one light source that might be the problem.(just a guess on my part)

AShadow might have a limit on its shadows.Try baking some on the static objects,and use AShadow for moving objects.