Skip to content

Commit c09cd5f

Browse files
authored
Merge pull request #92 from ollymonger/chore/august-24-add-blip-group-typings
chore: Add Blip Category API typings
2 parents 07b805b + af42a1e commit c09cd5f

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

packages/client/game/hud.d.ts

+38
Original file line numberDiff line numberDiff line change
@@ -866,6 +866,44 @@ declare interface GameHud extends GameHudLegacy {
866866
enableDeathbloodSeethrough(p1: number): void;
867867
endTextComponent(): void;
868868
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;
869907
}
870908

871909
interface GameHudMp extends GameHud { }

0 commit comments

Comments
 (0)