About Store Forum Documentation Contact



Post Reply 
Small bug i think i found
Author Message
Dandruff Offline
Member

Post: #1
Small bug i think i found
This might not be a bug at all and just me doing things wrong, but... here we go:

The render just flashes, pixelates and then freezes up when i add
Code:
Ms.smooth(SV_CLAMP2);
into Bool Init() after i specify a cursor image and right click move camera.

Code:
Ms.cursor(Images("data/gfx/cursors/special.gfx"));
Ms.smooth(SV_CLAMP2);

Again, it could just be me placing stuff at wrong spots (I put Ms.smooth on update and then it works) but it kinda took me a while to find the problem.
11-11-2010 04:24 AM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: Small bug i think i found
Ms.smooth(SV_CLAMP2); this shouldnt cause any problems

maybe this is the problem: ?
Ms.cursor(Images("data/gfx/cursors/special.gfx"));

you can try setting the last parameter in Ms.cursor(Images("data/gfx/cursors/special.gfx"));
to false (there's hidden Bool hardware parameter)
let me know if that helps
11-12-2010 07:50 PM
Find all posts by this user Quote this message in a reply
Post Reply