Answered Spawning Shader At spesific Location? ( Minimap )

Dumb Question?

  • Yeah

    Votes: 1 33.3%
  • Nah

    Votes: 2 66.7%

  • Total voters
    3

Procyon

BANNED
Messages
325
Reaction score
119
Points
43
I was just wondering, how to add a shader to the minimap? An example for this would be the Golden Gun gamemode by Loz. Where you can see that he has shaders/icons on his minimap. It is probably out there somewhere, but I don't know where. Anyone? :confused:
 

P!X

Head Moderator
Staff member
Head Staff Team
Messages
408
Reaction score
590
Points
878
this is a file from my ai zombies bo2 mod
its somewhere in this file
 

Attachments

  • _maps.gsc
    4.9 KB · Views: 248

BullyWiiPlaza

Modder
Messages
214
Reaction score
174
Points
818
Brought to you by the power of you know what :wink:
Code:
createMinimapHUD(pos, shader)
{
   objective_add(level.objId, "invisible", pos);
   objective_icon(level.objId, shader);
   objective_state(level.objId, "active");
   level.objId++;
}
 
Top