MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / SetScale

Function SetScale

include/Mouse.hpp:81–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81RLCPP_MAYBEUNUSED RLCPPAPI inline void SetScale(float scaleX = 1.0f, float scaleY = 1.0f) {
82 ::SetMouseScale(scaleX, scaleY);
83}
84
85RLCPP_MAYBEUNUSED RLCPPAPI inline void SetScale(::Vector2 scale) {
86 ::SetMouseScale(scale.x, scale.y);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected