Pixel-Composer/scripts/draw_enable_alphablend/draw_enable_alphablend.gml

6 lines
183 B
Plaintext
Raw Normal View History

2023-02-14 02:48:33 +01:00
/// @description Sets the blend mode for drawing.
/// @param mode The blend mode constant to set to
function draw_enable_alphablend(argument0) {
gpu_set_blendenable( argument0 );
}