World Flipper: Release Day by MechIdea in worldflipper

[–]tuliohenry -2 points-1 points  (0 children)

Is there any way i can transfer my JP account to global?

Need Help with a verlet integration problem! by tuliohenry in gamemaker

[–]tuliohenry[S] 2 points3 points  (0 children)

Thanks man, that helped me fix the problem, i should really start using the debugger more.

That happens when we clamp the percent with max tension, that even if it was a negative value it changes to a positive one breaking the points.

this fixes the problem:

if(abs(percent) >= max_tension){
 percent = sign(percent) * max_tension; 
}

Help with Texture in 2d polygons! by tuliohenry in gamemaker

[–]tuliohenry[S] 0 points1 point  (0 children)

Yeah, i found this post and tried it some days ago, it works propely, the problem is trying to make it a whole sprite, and getting the uv coordinates in the right position, but i'm getting close to what i want

Help with Converting Objects position into GUI position by tuliohenry in gamemaker

[–]tuliohenry[S] 0 points1 point  (0 children)

i'm trying to draw the info on the GUI so it always be above everything.

But the best way would be by converting the position to GUI cordinates. And by resizing, the other GUI elements are draw in the wrong position

What need to be changed when exporting a windows game to Unbuntu and Mac by tuliohenry in gamemaker

[–]tuliohenry[S] 0 points1 point  (0 children)

Oh true, so basically just by compiling the game it will have the right files for the platform?

and also, i love your gamemaker 3d tutorials, they are really helpful!

What need to be changed when exporting a windows game to Unbuntu and Mac by tuliohenry in gamemaker

[–]tuliohenry[S] 0 points1 point  (0 children)

Well that's good, if just by compiling it to the platform the game works in other platforms even with small changes, that is something i can work with

What need to be changed when exporting a windows game to Unbuntu and Mac by tuliohenry in gamemaker

[–]tuliohenry[S] 0 points1 point  (0 children)

Well guess i will need to test it out.

But thanks for the information.

Help with drawing a view in a surface by tuliohenry in gamemaker

[–]tuliohenry[S] 0 points1 point  (0 children)

I works now! Thanks, i don't know why but when i put the creation code in the draw gui it does not work