rlScissor method
Implementation
void rlScissor(
num x,
num y,
num width,
num height,
) => run(
() => 'rlScissor($x, $y, $width, $height)',
() => rl.Rlgl.rlScissor(
x.toInt(),
y.toInt(),
width.toInt(),
height.toInt(),
),
);