diff --git a/404.html b/404.html index 82814daef..ef5321a36 100644 --- a/404.html +++ b/404.html @@ -3,7 +3,7 @@ - + @@ -27,11 +27,11 @@ - + - + - +
diff --git a/api/client/api/index.html b/api/client/api/index.html index 71918436f..7babb68b0 100644 --- a/api/client/api/index.html +++ b/api/client/api/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/client/controllers/interaction/index.html b/api/client/controllers/interaction/index.html index 419bc7922..cdd056b61 100644 --- a/api/client/controllers/interaction/index.html +++ b/api/client/controllers/interaction/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/client/menus/native-menu/index.html b/api/client/menus/native-menu/index.html index 60a24713c..366292895 100644 --- a/api/client/menus/native-menu/index.html +++ b/api/client/menus/native-menu/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/client/screen/instructional-menu/index.html b/api/client/screen/instructional-menu/index.html index e4f5aaec8..c6f2fc037 100644 --- a/api/client/screen/instructional-menu/index.html +++ b/api/client/screen/instructional-menu/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/client/system/notification/index.html b/api/client/system/notification/index.html index 794488a22..e62eac191 100644 --- a/api/client/system/notification/index.html +++ b/api/client/system/notification/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/client/webview/index.html b/api/client/webview/index.html index 098b85bd9..c142bf69f 100644 --- a/api/client/webview/index.html +++ b/api/client/webview/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/api/plugin-api/index.html b/api/server/api/plugin-api/index.html index e31d3a7ff..a484dc779 100644 --- a/api/server/api/plugin-api/index.html +++ b/api/server/api/plugin-api/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/config/index.html b/api/server/config/index.html index 51a51dadd..376af9abe 100644 --- a/api/server/config/index.html +++ b/api/server/config/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/controllers/blip/index.html b/api/server/controllers/blip/index.html index 850ed761d..0f59e66f6 100644 --- a/api/server/controllers/blip/index.html +++ b/api/server/controllers/blip/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/controllers/interaction/index.html b/api/server/controllers/interaction/index.html index 4103957e9..819de6391 100644 --- a/api/server/controllers/interaction/index.html +++ b/api/server/controllers/interaction/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/controllers/marker/index.html b/api/server/controllers/marker/index.html index 3d8e03b3f..b8a8de5ff 100644 --- a/api/server/controllers/marker/index.html +++ b/api/server/controllers/marker/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
@@ -207,13 +207,17 @@

const Rebar = useRebar(); // Create a global marker -const globalMarker = Rebar.controllers.useMarkerGlobal({ - pos: new alt.Vector3(0, 0, 0), - color: new alt.RGBA(255, 255, 255, 255), - dimension: 0, - scale: new alt.Vector3(1, 1, 1), - type: MarkerType.CYLINDER, -}); +// you can specify streaming distance from 1 to 50, it will reset to 50 if not specified or if it is greater than 50. +const globalMarker = Rebar.controllers.useMarkerGlobal( + { + pos: new alt.Vector3(0, 0, 0), + color: new alt.RGBA(255, 255, 255, 255), + dimension: 0, + scale: new alt.Vector3(1, 1, 1), + type: MarkerType.CYLINDER, + }, + 20, // streaming distance, completely optional +); // Change the position of the marker globalMarker.update({ pos: new alt.Vector3(0, 0, 1) }); diff --git a/api/server/controllers/object/index.html b/api/server/controllers/object/index.html index fe598078b..908e7755b 100644 --- a/api/server/controllers/object/index.html +++ b/api/server/controllers/object/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/controllers/pickups/index.html b/api/server/controllers/pickups/index.html index 9bd5d6f32..78781012e 100644 --- a/api/server/controllers/pickups/index.html +++ b/api/server/controllers/pickups/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/controllers/textlabel/index.html b/api/server/controllers/textlabel/index.html index 0a22d225a..2c69f1e8b 100644 --- a/api/server/controllers/textlabel/index.html +++ b/api/server/controllers/textlabel/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
@@ -206,7 +206,11 @@

const Rebar = useRebar(); // Create text label -const label = Rebar.controllers.useTextLabelGlobal({ text: '~r~Hello World', pos: new alt.Vector3(0, 0, 0) }); +// you can specify streaming distance from 1 to 50, it will reset to 50 if not specified or if it is greater than 50. +const label = Rebar.controllers.useTextLabelGlobal( + { text: '~r~Hello World', pos: new alt.Vector3(0, 0, 0) }, + 20, //streaming distance, completely optional +); // Update text to say something else label.update({ text: 'New Text!' }); diff --git a/api/server/database/usage/index.html b/api/server/database/usage/index.html index 040be6f73..45fb7ec20 100644 --- a/api/server/database/usage/index.html +++ b/api/server/database/usage/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/document/document-account/index.html b/api/server/document/document-account/index.html index f94bb809d..6e9516bd8 100644 --- a/api/server/document/document-account/index.html +++ b/api/server/document/document-account/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/document/document-character/index.html b/api/server/document/document-character/index.html index 066e8519e..507303c1d 100644 --- a/api/server/document/document-character/index.html +++ b/api/server/document/document-character/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/document/document-global/index.html b/api/server/document/document-global/index.html index 48d63d1d6..cf6b8343c 100644 --- a/api/server/document/document-global/index.html +++ b/api/server/document/document-global/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/document/document-vehicle/index.html b/api/server/document/document-vehicle/index.html index 30a0a626a..2ad148c56 100644 --- a/api/server/document/document-vehicle/index.html +++ b/api/server/document/document-vehicle/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/document/document-virtual/index.html b/api/server/document/document-virtual/index.html index a67a05e83..0639e6383 100644 --- a/api/server/document/document-virtual/index.html +++ b/api/server/document/document-virtual/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/document/what-are-documents/index.html b/api/server/document/what-are-documents/index.html index c5d05cd75..c420da3eb 100644 --- a/api/server/document/what-are-documents/index.html +++ b/api/server/document/what-are-documents/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/api/server/events/index.html b/api/server/events/index.html index 909abb08a..f54b621c6 100644 --- a/api/server/events/index.html +++ b/api/server/events/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/getters/getters-player/index.html b/api/server/getters/getters-player/index.html index 5674d7321..eebb531ee 100644 --- a/api/server/getters/getters-player/index.html +++ b/api/server/getters/getters-player/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/getters/getters-players/index.html b/api/server/getters/getters-players/index.html index 55dfc330e..76b300e19 100644 --- a/api/server/getters/getters-players/index.html +++ b/api/server/getters/getters-players/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/getters/getters-vehicle/index.html b/api/server/getters/getters-vehicle/index.html index e931c36b8..194cc7940 100644 --- a/api/server/getters/getters-vehicle/index.html +++ b/api/server/getters/getters-vehicle/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/getters/getters-vehicles/index.html b/api/server/getters/getters-vehicles/index.html index 360876186..f23f90aa3 100644 --- a/api/server/getters/getters-vehicles/index.html +++ b/api/server/getters/getters-vehicles/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/getters/getters-world/index.html b/api/server/getters/getters-world/index.html index 54ef9f755..0df4ca67c 100644 --- a/api/server/getters/getters-world/index.html +++ b/api/server/getters/getters-world/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/player/player-use/index.html b/api/server/player/player-use/index.html index 423ed6a07..caa4b3fb6 100644 --- a/api/server/player/player-use/index.html +++ b/api/server/player/player-use/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/server-api-usage/index.html b/api/server/server-api-usage/index.html index 8f9c6b92a..392439446 100644 --- a/api/server/server-api-usage/index.html +++ b/api/server/server-api-usage/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/systems/messenger/index.html b/api/server/systems/messenger/index.html index 56f734261..f682d0198 100644 --- a/api/server/systems/messenger/index.html +++ b/api/server/systems/messenger/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/systems/useservertime/index.html b/api/server/systems/useservertime/index.html index f60003fbc..bdbc17d67 100644 --- a/api/server/systems/useservertime/index.html +++ b/api/server/systems/useservertime/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/utility/protect-callback/index.html b/api/server/utility/protect-callback/index.html index 80831c6d2..4f38ea24f 100644 --- a/api/server/utility/protect-callback/index.html +++ b/api/server/utility/protect-callback/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/server/vehicle/vehicle-use/index.html b/api/server/vehicle/vehicle-use/index.html index 9c32adae9..521fc0613 100644 --- a/api/server/vehicle/vehicle-use/index.html +++ b/api/server/vehicle/vehicle-use/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/api/shared/utility/index.html b/api/shared/utility/index.html index 7243374ca..45ad2e416 100644 --- a/api/shared/utility/index.html +++ b/api/shared/utility/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/changelog/index.html b/changelog/index.html index 559622211..e70fd9266 100644 --- a/changelog/index.html +++ b/changelog/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/data/controls/index.html b/data/controls/index.html index db4896e26..59a9509ae 100644 --- a/data/controls/index.html +++ b/data/controls/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/data/explosions/index.html b/data/explosions/index.html index 92154cbcc..d0368cdf5 100644 --- a/data/explosions/index.html +++ b/data/explosions/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/data/frontend-sounds/index.html b/data/frontend-sounds/index.html index f20f3eb24..7ccb65fc3 100644 --- a/data/frontend-sounds/index.html +++ b/data/frontend-sounds/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/data/ped-bones/index.html b/data/ped-bones/index.html index 86b28b447..82127dffd 100644 --- a/data/ped-bones/index.html +++ b/data/ped-bones/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/data/pickups/index.html b/data/pickups/index.html index b59f0c27f..4acfc46f4 100644 --- a/data/pickups/index.html +++ b/data/pickups/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/data/vehicle-bones/index.html b/data/vehicle-bones/index.html index 6a6dfa5ad..4ff24eab8 100644 --- a/data/vehicle-bones/index.html +++ b/data/vehicle-bones/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/data/vehicle-colors/index.html b/data/vehicle-colors/index.html index e86a7cb08..8e175ad0a 100644 --- a/data/vehicle-colors/index.html +++ b/data/vehicle-colors/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/data/vehicle-mods/index.html b/data/vehicle-mods/index.html index b51bbab2b..17ea858dc 100644 --- a/data/vehicle-mods/index.html +++ b/data/vehicle-mods/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/data/weather/index.html b/data/weather/index.html index ea57b6495..4a0eca586 100644 --- a/data/weather/index.html +++ b/data/weather/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/developing/index.html b/developing/index.html index d1b1f8473..fa2cf4bbf 100644 --- a/developing/index.html +++ b/developing/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/faq/index.html b/faq/index.html index 715972ec7..2bbb69449 100644 --- a/faq/index.html +++ b/faq/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/index.html b/index.html index 26c5ce890..0c7fb012c 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/install/index.html b/install/index.html index 2d2e24146..b9deb3267 100644 --- a/install/index.html +++ b/install/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/plugins/create/index.html b/plugins/create/index.html index ed2593d4b..4ef5636d7 100644 --- a/plugins/create/index.html +++ b/plugins/create/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/plugins/what-is-a-plugin/index.html b/plugins/what-is-a-plugin/index.html index 17b77648c..440de80f0 100644 --- a/plugins/what-is-a-plugin/index.html +++ b/plugins/what-is-a-plugin/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/resources/js/config.js b/resources/js/config.js index 0d85c4c68..31a933fd1 100644 --- a/resources/js/config.js +++ b/resources/js/config.js @@ -1 +1 @@ -var __DOCS_CONFIG__ = {"id":"221I/MZs9wu94DB92bIQt6ecM0mHVyN+9gU","key":"elTRhMovS31GV5CkgSQ0nYyoEmhYo1r4Qakme2N3kO0.hPvjLMD091uTlTb4qbzZmsi3fGK+rxR17US+seM3plMmVP/La+MUn2Kcp3p+Nj69NAPPMwPjZFhbRPWsThIPVA.102","base":"/","host":"rebarv.com","version":"1.0.0","useRelativePaths":true,"documentName":"index.html","appendDocumentName":false,"trailingSlash":true,"preloadSearch":false,"cacheBustingToken":"3.5.0.770734693379","cacheBustingStrategy":"query","sidebarFilterPlaceholder":"Filter","toolbarFilterPlaceholder":"Filter","showSidebarFilter":true,"filterNotFoundMsg":"No member names found containing the query \"{query}\"","maxHistoryItems":15,"homeIcon":"","access":[{"value":"public","label":"Public"},{"value":"protected","label":"Protected"}],"toolbarLinks":[{"id":"fields","label":"Fields"},{"id":"properties","label":"Properties"},{"id":"methods","label":"Methods"},{"id":"events","label":"Events"}],"sidebar":[{"n":"/","l":"What is Rebar?"},{"n":"install","l":"Installation"},{"n":"upgrade","l":"Upgrading"},{"n":"developing","l":"Development"},{"n":"faq","l":"FAQ"},{"n":"changelog","l":"Changelog"},{"n":"plugins","l":"Plugins","c":false,"i":[{"n":"what-is-a-plugin","l":"What is a Plugin?"},{"n":"create","l":"Create a Plugin"}]},{"n":"webview","l":"Webview","c":false,"i":[{"n":"what-is-a-webview","l":"What is a Webview?"},{"n":"create","l":"Create a Webview"},{"n":"composables","l":"Composables","c":false,"i":[{"n":"use-audio","l":"use​Audio"},{"n":"use-events","l":"use​Events"},{"n":"use-local-storage","l":"use​Local​Storage"},{"n":"use-messenger","l":"use​Messenger"},{"n":"use-minimap","l":"use​Minimap"},{"n":"use-player-stats","l":"use​Player​Stats"}]}]},{"n":"api","l":"API","c":false,"i":[{"n":"client","l":"Client","c":false,"i":[{"n":"controllers","l":"Controllers","c":false,"i":[{"n":"interaction","l":"Interaction"}]},{"n":"menus","l":"Menus","c":false,"i":[{"n":"native-menu","l":"Native Menu"}]},{"n":"screen","l":"Screen","c":false,"i":[{"n":"instructional-menu","l":"Instructional Menu"}]},{"n":"system","l":"System","c":false,"i":[{"n":"notification","l":"Notification"}]},{"n":"api","l":"Plugin API"},{"n":"webview","l":"Webview"}]},{"n":"server","l":"Server","c":false,"i":[{"n":"controllers","l":"Controllers","c":false,"i":[{"n":"blip","l":"Blip"},{"n":"interaction","l":"Interaction"},{"n":"marker","l":"Marker"},{"n":"object","l":"Objects"},{"n":"pickups","l":"Pickups"},{"n":"textlabel","l":"Text Labels"}]},{"n":"database","l":"Database","c":false,"i":[{"n":"usage","l":"Usage"}]},{"n":"document","l":"Document","c":false,"i":[{"n":"what-are-documents","l":"What are Documents?"},{"n":"document-account","l":"Account"},{"n":"document-character","l":"Character"},{"n":"document-global","l":"Global"},{"n":"document-vehicle","l":"Vehicle"},{"n":"document-virtual","l":"Virtual"}]},{"n":"getters","l":"Getters","c":false,"i":[{"n":"getters-player","l":"Player"},{"n":"getters-players","l":"Players"},{"n":"getters-vehicle","l":"Vehicle"},{"n":"getters-vehicles","l":"Vehicles"},{"n":"getters-world","l":"World"}]},{"n":"player","l":"Player","c":false,"i":[{"n":"player-use","l":"use​Player"}]},{"n":"api","l":"Plugin API","c":false,"i":[{"n":"plugin-api","l":"Plugin API"}]},{"n":"systems","l":"Systems","c":false,"i":[{"n":"messenger","l":"Messenger"},{"n":"useservertime","l":"use​Server​Time"}]},{"n":"utility","l":"Utility","c":false,"i":[{"n":"protect-callback","l":"Protect Callback"}]},{"n":"vehicle","l":"Vehicle","c":false,"i":[{"n":"vehicle-use","l":"use​Vehicle"}]},{"n":"config","l":"Configuration Usage"},{"n":"events","l":"Events"},{"n":"server-api-usage","l":"Server API Usage"}]},{"n":"shared","l":"Shared","c":false,"i":[{"n":"utility","l":"Utility"}]}]},{"n":"utilities","l":"Utilities","c":false,"i":[{"n":"console-commands","l":"Console Commands"}]},{"n":"data","l":"Data","c":false,"i":[{"n":"explosions","l":"Explosion Types"},{"n":"frontend-sounds","l":"Frontend Sounds"},{"n":"controls","l":"GTA:V Controls"},{"n":"ped-bones","l":"Ped Bones"},{"n":"vehicle-bones","l":"Vehicle Bones"},{"n":"vehicle-colors","l":"Vehicle Colors"},{"n":"vehicle-mods","l":"Vehicle Mods"},{"n":"pickups","l":"Weapon Pickup Models"},{"n":"weather","l":"Weather"}]}],"search":{"mode":0,"minChars":2,"maxResults":20,"placeholder":"Search","hotkeys":["k"],"noResultsFoundMsg":"Sorry, no results found.","recognizeLanguages":true,"languages":[0],"preload":false},"resources":{"History_Title_Label":"History","History_ClearLink_Label":"Clear","History_NoHistory_Label":"No history items","API_AccessFilter_Label":"Access","API_ParameterSection_Label":"PARAMETERS","API_SignatureSection_Label":"SIGNATURE","API_CopyHint_Label":"Copy","API_CopyNameHint_Label":"Copy name","API_CopyLinkHint_Label":"Copy link","API_CopiedAckHint_Label":"Copied!","API_MoreOverloads_Label":"more","API_MoreDropdownItems_Label":"More","API_OptionalParameter_Label":"optional","API_DefaultParameterValue_Label":"Default value","API_InheritedFilter_Label":"Inherited","Search_Input_Placeholder":"Search","Toc_Contents_Label":"Contents","Toc_RelatedClasses_Label":"Related Classes","History_JustNowTime_Label":"just now","History_AgoTime_Label":"ago","History_YearTime_Label":"y","History_MonthTime_Label":"mo","History_DayTime_Label":"d","History_HourTime_Label":"h","History_MinuteTime_Label":"m","History_SecondTime_Label":"s"}}; +var __DOCS_CONFIG__ = {"id":"mkMmv0SBHptU5IwWjDG63oslQ/221c5FGqK","key":"CYygNTHlKEj8RHKyAymJn2QgHLoKL0Gw3PNwNXwCVxM.NqomocGQQfUMYiYVurN6sqv64TeZ1kXID6I8bDMrr/oOE7pHpGui7hnIaNMUhqxjsVAQy0KzCweX6Bv9eCd1dQ.3","base":"/","host":"rebarv.com","version":"1.0.0","useRelativePaths":true,"documentName":"index.html","appendDocumentName":false,"trailingSlash":true,"preloadSearch":false,"cacheBustingToken":"3.5.0.770738338532","cacheBustingStrategy":"query","sidebarFilterPlaceholder":"Filter","toolbarFilterPlaceholder":"Filter","showSidebarFilter":true,"filterNotFoundMsg":"No member names found containing the query \"{query}\"","maxHistoryItems":15,"homeIcon":"","access":[{"value":"public","label":"Public"},{"value":"protected","label":"Protected"}],"toolbarLinks":[{"id":"fields","label":"Fields"},{"id":"properties","label":"Properties"},{"id":"methods","label":"Methods"},{"id":"events","label":"Events"}],"sidebar":[{"n":"/","l":"What is Rebar?"},{"n":"install","l":"Installation"},{"n":"upgrade","l":"Upgrading"},{"n":"developing","l":"Development"},{"n":"faq","l":"FAQ"},{"n":"changelog","l":"Changelog"},{"n":"plugins","l":"Plugins","c":false,"i":[{"n":"what-is-a-plugin","l":"What is a Plugin?"},{"n":"create","l":"Create a Plugin"}]},{"n":"webview","l":"Webview","c":false,"i":[{"n":"what-is-a-webview","l":"What is a Webview?"},{"n":"create","l":"Create a Webview"},{"n":"composables","l":"Composables","c":false,"i":[{"n":"use-audio","l":"use​Audio"},{"n":"use-events","l":"use​Events"},{"n":"use-local-storage","l":"use​Local​Storage"},{"n":"use-messenger","l":"use​Messenger"},{"n":"use-minimap","l":"use​Minimap"},{"n":"use-player-stats","l":"use​Player​Stats"}]}]},{"n":"api","l":"API","c":false,"i":[{"n":"client","l":"Client","c":false,"i":[{"n":"controllers","l":"Controllers","c":false,"i":[{"n":"interaction","l":"Interaction"}]},{"n":"menus","l":"Menus","c":false,"i":[{"n":"native-menu","l":"Native Menu"}]},{"n":"screen","l":"Screen","c":false,"i":[{"n":"instructional-menu","l":"Instructional Menu"}]},{"n":"system","l":"System","c":false,"i":[{"n":"notification","l":"Notification"}]},{"n":"api","l":"Plugin API"},{"n":"webview","l":"Webview"}]},{"n":"server","l":"Server","c":false,"i":[{"n":"controllers","l":"Controllers","c":false,"i":[{"n":"blip","l":"Blip"},{"n":"interaction","l":"Interaction"},{"n":"marker","l":"Marker"},{"n":"object","l":"Objects"},{"n":"pickups","l":"Pickups"},{"n":"textlabel","l":"Text Labels"}]},{"n":"database","l":"Database","c":false,"i":[{"n":"usage","l":"Usage"}]},{"n":"document","l":"Document","c":false,"i":[{"n":"what-are-documents","l":"What are Documents?"},{"n":"document-account","l":"Account"},{"n":"document-character","l":"Character"},{"n":"document-global","l":"Global"},{"n":"document-vehicle","l":"Vehicle"},{"n":"document-virtual","l":"Virtual"}]},{"n":"getters","l":"Getters","c":false,"i":[{"n":"getters-player","l":"Player"},{"n":"getters-players","l":"Players"},{"n":"getters-vehicle","l":"Vehicle"},{"n":"getters-vehicles","l":"Vehicles"},{"n":"getters-world","l":"World"}]},{"n":"player","l":"Player","c":false,"i":[{"n":"player-use","l":"use​Player"}]},{"n":"api","l":"Plugin API","c":false,"i":[{"n":"plugin-api","l":"Plugin API"}]},{"n":"systems","l":"Systems","c":false,"i":[{"n":"messenger","l":"Messenger"},{"n":"useservertime","l":"use​Server​Time"}]},{"n":"utility","l":"Utility","c":false,"i":[{"n":"protect-callback","l":"Protect Callback"}]},{"n":"vehicle","l":"Vehicle","c":false,"i":[{"n":"vehicle-use","l":"use​Vehicle"}]},{"n":"config","l":"Configuration Usage"},{"n":"events","l":"Events"},{"n":"server-api-usage","l":"Server API Usage"}]},{"n":"shared","l":"Shared","c":false,"i":[{"n":"utility","l":"Utility"}]}]},{"n":"utilities","l":"Utilities","c":false,"i":[{"n":"console-commands","l":"Console Commands"}]},{"n":"data","l":"Data","c":false,"i":[{"n":"explosions","l":"Explosion Types"},{"n":"frontend-sounds","l":"Frontend Sounds"},{"n":"controls","l":"GTA:V Controls"},{"n":"ped-bones","l":"Ped Bones"},{"n":"vehicle-bones","l":"Vehicle Bones"},{"n":"vehicle-colors","l":"Vehicle Colors"},{"n":"vehicle-mods","l":"Vehicle Mods"},{"n":"pickups","l":"Weapon Pickup Models"},{"n":"weather","l":"Weather"}]}],"search":{"mode":0,"minChars":2,"maxResults":20,"placeholder":"Search","hotkeys":["k"],"noResultsFoundMsg":"Sorry, no results found.","recognizeLanguages":true,"languages":[0],"preload":false},"resources":{"History_Title_Label":"History","History_ClearLink_Label":"Clear","History_NoHistory_Label":"No history items","API_AccessFilter_Label":"Access","API_ParameterSection_Label":"PARAMETERS","API_SignatureSection_Label":"SIGNATURE","API_CopyHint_Label":"Copy","API_CopyNameHint_Label":"Copy name","API_CopyLinkHint_Label":"Copy link","API_CopiedAckHint_Label":"Copied!","API_MoreOverloads_Label":"more","API_MoreDropdownItems_Label":"More","API_OptionalParameter_Label":"optional","API_DefaultParameterValue_Label":"Default value","API_InheritedFilter_Label":"Inherited","Search_Input_Placeholder":"Search","Toc_Contents_Label":"Contents","Toc_RelatedClasses_Label":"Related Classes","History_JustNowTime_Label":"just now","History_AgoTime_Label":"ago","History_YearTime_Label":"y","History_MonthTime_Label":"mo","History_DayTime_Label":"d","History_HourTime_Label":"h","History_MinuteTime_Label":"m","History_SecondTime_Label":"s"}}; diff --git a/sitemap.xml.gz b/sitemap.xml.gz index a49b891c3..c1ada4e03 100644 Binary files a/sitemap.xml.gz and b/sitemap.xml.gz differ diff --git a/upgrade/index.html b/upgrade/index.html index 32cbdf7b7..e48bee186 100644 --- a/upgrade/index.html +++ b/upgrade/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +
diff --git a/utilities/console-commands/index.html b/utilities/console-commands/index.html index f9f3d5626..ac22623fd 100644 --- a/utilities/console-commands/index.html +++ b/utilities/console-commands/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/webview/composables/use-audio/index.html b/webview/composables/use-audio/index.html index 02fda03a2..bc07fd55b 100644 --- a/webview/composables/use-audio/index.html +++ b/webview/composables/use-audio/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/webview/composables/use-events/index.html b/webview/composables/use-events/index.html index 199471cda..fcc47e46c 100644 --- a/webview/composables/use-events/index.html +++ b/webview/composables/use-events/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/webview/composables/use-local-storage/index.html b/webview/composables/use-local-storage/index.html index bef086e64..84ffd88ac 100644 --- a/webview/composables/use-local-storage/index.html +++ b/webview/composables/use-local-storage/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/webview/composables/use-messenger/index.html b/webview/composables/use-messenger/index.html index 7b205fd19..8111f155a 100644 --- a/webview/composables/use-messenger/index.html +++ b/webview/composables/use-messenger/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/webview/composables/use-minimap/index.html b/webview/composables/use-minimap/index.html index fa7f46644..738435013 100644 --- a/webview/composables/use-minimap/index.html +++ b/webview/composables/use-minimap/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/webview/composables/use-player-stats/index.html b/webview/composables/use-player-stats/index.html index e054717be..da4981ec7 100644 --- a/webview/composables/use-player-stats/index.html +++ b/webview/composables/use-player-stats/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/webview/create/index.html b/webview/create/index.html index fc267a350..3ca6a0bf3 100644 --- a/webview/create/index.html +++ b/webview/create/index.html @@ -3,7 +3,7 @@ - + @@ -30,12 +30,12 @@ - + - + - - + +
diff --git a/webview/what-is-a-webview/index.html b/webview/what-is-a-webview/index.html index 8d42d030d..d4a3371da 100644 --- a/webview/what-is-a-webview/index.html +++ b/webview/what-is-a-webview/index.html @@ -3,7 +3,7 @@ - + @@ -30,11 +30,11 @@ - + - + - +