Difference between revisions of "Lua:AddHudIcon"
From Fortress Forever Wiki
Jump to navigationJump to search (New page: {{Infobox manual/Header}} ==AddHudIcon== Adds an icon to a player's screen ===Usage=== <pre>AddHudIcon(player, material, icon_id, x, y, w, h, align)</pre> ===Output=== Returns: nothing ...) |
(No difference)
|
Revision as of 11:00, 11 May 2009
|
AddHudIconAdds an icon to a player's screen UsageAddHudIcon(player, material, icon_id, x, y, w, h, align) OutputReturns: nothing Input
Examplelocal player = CastToPlayer( player_entity ) AddHudIcon(player, "minimap.vtf", "mapoverlay", 0, 40, 128, 128, 1 ) |