mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 13:23:46 +03:00
34 lines
827 B
Lua
34 lines
827 B
Lua
--[[
|
|
| This file was obtained through the combined efforts
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
|
|
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
|
|
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
|
--]]
|
|
|
|
|
|
include( "shared.lua" )
|
|
|
|
--[[---------------------------------------------------------
|
|
Name: Draw
|
|
Desc: Draw it!
|
|
-----------------------------------------------------------]]
|
|
function ENT:Draw()
|
|
self:DrawModel()
|
|
end
|
|
|
|
--[[---------------------------------------------------------
|
|
Name: DrawTranslucent
|
|
Desc: Draw translucent
|
|
-----------------------------------------------------------]]
|
|
function ENT:DrawTranslucent()
|
|
|
|
-- This is here just to make it backwards compatible.
|
|
-- You shouldn't really be drawing your model here unless it's translucent
|
|
|
|
self:Draw()
|
|
|
|
end
|