wiremod-svn-archive/wire/lua/entities/gmod_wire_hudindicator/shared.lua
TheApathetic 97bff0bea6 *Fixed a few gyroscope bugs
*Added Full Circle and Semi-circle styles to HUD Indicators
*Added a control panel interface to remotely unregister yourself from other people's HUD Indicators (untested)
2007-05-08 04:24:43 +00:00

40 lines
796 B
Lua

ENT.Type = "anim"
ENT.Base = "base_wire_entity"
ENT.PrintName = ""
ENT.Author = ""
ENT.Contact = ""
ENT.Purpose = ""
ENT.Instructions = ""
ENT.Spawnable = false
ENT.AdminSpawnable = false
/* Why are these here? (TheApathetic)
function ENT:SetEffect( name )
self.Entity:SetNetworkedString( "Effect", name )
end
function ENT:GetEffect( name )
return self.Entity:GetNetworkedString( "Effect" )
end
function ENT:SetOn( boolon )
self.Entity:SetNetworkedBool( "On", boolon, true )
end
function ENT:IsOn( name )
return self.Entity:GetNetworkedBool( "On" )
end
function ENT:SetOffset( v )
self.Entity:SetNetworkedVector( "Offset", v, true )
end
function ENT:GetOffset( name )
return self.Entity:GetNetworkedVector( "Offset" )
end
*/