Gangwar Fix 14 - Gute Nacht

This commit is contained in:
VegaZ
2021-03-30 00:31:46 +02:00
parent 4303f0cf14
commit a8e41c2808

View File

@@ -124,19 +124,13 @@
loadArea() {
var self = this;
self.blip = mp.blips.new(5, self.vector, {
alpha: 70,
color: self.color,
rotation: self.rotation,
name: self.name
});
self.blip = mp.game.ui.addBlipForRadius(self.x, self.y, 1, self.range);
/*mp.game.invoke(Natives.SET_BLIP_SPRITE, self.blip, 5);
mp.game.invoke(Natives.SET_BLIP_SPRITE, self.blip, 5);
mp.game.invoke(Natives.SET_BLIP_ALPHA, self.blip, 70);
mp.game.invoke(Natives.SET_BLIP_COLOUR, self.blip, self.color);
*/
self._colshape = mp.colshapes.newCircle(self.x, self.y, self.range * 1.5);
}
render() {