Skip to content

Instantly share code, notes, and snippets.

View xbeastguyx's full-sized avatar

Michael xbeastguyx

View GitHub Profile
@IlyaShastin
IlyaShastin / 3DPaintablePanel.lua
Last active December 16, 2020 06:36
Paint 2D in 3D on 2D screen!
if SERVER then return end
vgui.Paint3D = {} -- Table in global vgui table to hold our stuff
vgui.Paint3D.Panels = {} -- Table containing panels to be 3D painted
vgui.Paint3D.Movement = {} -- Table containing panels to be affected by movement
vgui.Paint3D.Cache = {}
--
-- Grab a few important variables for view calc and save them in the global vgui table.