@@ -866,6 +866,44 @@ declare interface GameHud extends GameHudLegacy {
866
866
enableDeathbloodSeethrough ( p1 : number ) : void ;
867
867
endTextComponent ( ) : void ;
868
868
unk : GameHudUnk ;
869
+
870
+ /**
871
+ * This method will set a blip category priority.
872
+ * @param category
873
+ * @param priority
874
+ * @example
875
+ * //create a blip
876
+ * let policeBlip = mp.blips.new(60, new mp.Vector3(427.95, -981.05, 0), {
877
+ * name: 'Los Santos Police Station',
878
+ * color: 3,
879
+ * shortRange: true,
880
+ * });
881
+ * //set blip category to 60
882
+ * policeBlip.setCategory(60);
883
+ * //make sure 60 is a grouped category.
884
+ * mp.game.ui.setBlipCategoryGrouped(60, true);
885
+ * //set blip category 60 priority to 0
886
+ * mp.game.ui.setBlipCategoryPriority(60, 0);
887
+ */
888
+ setBlipCategoryPriority ( category : number , priority : number ) : void ;
889
+
890
+ /**
891
+ * This method will set a blip into a category.
892
+ * @param category
893
+ * @param placeIn
894
+ * @example
895
+ * //create a blip
896
+ * let policeBlip = mp.blips.new(60, new mp.Vector3(427.95, -981.05, 0), {
897
+ * name: 'Los Santos Police Station',
898
+ * color: 3,
899
+ * shortRange: true,
900
+ * });
901
+ * //set blip category to 60
902
+ * policeBlip.setCategory(60);
903
+ * //make sure 60 is a grouped category.
904
+ * mp.game.ui.setBlipCategoryGrouped(60, true);
905
+ */
906
+ setBlipCategoryGrouped ( category : number , priority : boolean ) : void ;
869
907
}
870
908
871
909
interface GameHudMp extends GameHud { }
0 commit comments