How do I scale my pixel art game in GameMaker without blurring the sprites?
I'm currently developing a pixel art game in GameMaker Studio 2, and I'm running into issues with scaling and resolution that affect how my pixel art looks. My game has a native resolution of 320x180,...
View ArticleHow do I make a bloom/glow effect?
While trying to use this code in the create event nothing happens_fx_struct = fx_create("_effect_glow");if _fx_struct != -1 { fx_params = fx_get_parameters(_fx_struct); fx_set_parameter(_fx_struct,...
View ArticleGame maker physics: using different restitutions in one object
I tried to make a game in which the player makes atoms. I'm really far in making a good looking and working game.But now I want to make the atoms have different properties for different phases (solid,...
View ArticleDependency issue in C++/CLI interface to use a C# library in GameMaker
I'm trying to write a relatively simple interface to use a C# library in GameMaker, and I'm fairly certain the issue is on the C# side. I have very low familiarity with both the language and Visual...
View ArticleError with gradle when running gamemaker project for android
This is the error i always get when i try to run my program with android studio:WARNING: A restricted method in java.lang.System has been calledWARNING: java.lang.System::load has been called by...
View ArticleDot Notation in GML and how do I use this.function()
I'm making a script using GML. I'm quite new to GML but already have some experience in Python and a little bit in C languages.Is this even correct?function tooltip() { var this = {}; this.__init__ =...
View ArticleGML - Error to set position when the object starts
i created an object in gml with Draw GUI event, with the following code:draw_self()draw_set_color(c_black)draw_text(x + 70,y + 50,string(obj_deafult.value))why the object is initializing out of the...
View ArticleFalling animation plays throughout the whole jump?
It's a pretty simple problem. When I jump in my game, there are two animations. One for rising and one for falling. However, when jumping while moving left or right, it only plays the falling...
View ArticleWhy does my gamemaker collision system have so many issues?
I'm so sorry if this has an obvious fix but I'm really new to GML and I haven't been able to find a fix online. I've been racking my brain for hours trying to figure out why my movement system barely...
View Article