Scripting/Squirrel/Client Functions/GUI::ScreenPosToWorld: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "VectorScreen.rawnewmember("Round", ::floor, null, true); VectorScreen.rawnewmember("Width", GUI.GetScreenSize().X, null, true); VectorScreen.rawnewmember("Height", GUI.GetScr...")
(No difference)

Revision as of 22:48, 30 December 2016

VectorScreen.rawnewmember("Round", ::floor, null, true);

VectorScreen.rawnewmember("Width", GUI.GetScreenSize().X, null, true); VectorScreen.rawnewmember("Height", GUI.GetScreenSize().Y, null, true);

VectorScreen.rawnewmember("Relative", function(x, y) {

   return VectorScreen(Round(x * Width), Round(y * Height));

}, null, true);