Related changes
Jump to navigation
Jump to search
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
10 November 2024
|
15:40 | Template:New feature/item 4 changes history −202 [Fernando187 (4×)] | |||
|
15:40 (cur | prev) +2 Fernando187 talk contribs | ||||
|
15:40 (cur | prev) −12 Fernando187 talk contribs | ||||
|
15:39 (cur | prev) −2 Fernando187 talk contribs | ||||
|
15:39 (cur | prev) −190 Fernando187 talk contribs (Fix wrong language names) |
7 November 2024
17:34 | EngineStreamingRestoreBufferSize diffhist −53 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:34 | EngineStreamingSetModelCacheLimits diffhist −53 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:34 | EngineFreeTXD diffhist −52 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:33 | EngineRequestTXD diffhist −52 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:33 | EngineStreamingGetBufferSize diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:33 | EngineStreamingSetBufferSize diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:33 | EngineStreamingRestoreMemorySize diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:33 | EngineStreamingGetMemorySize diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:33 | EngineStreamingSetMemorySize diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:29 | EngineStreamingGetUsedMemory diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:28 | EngineStreamingFreeUpMemory diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:25 | EngineGetModelVisibleTime diffhist −55 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:25 | EngineSetModelVisibleTime diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:22 | EngineRestreamWorld diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:21 | EngineResetModelLODDistance diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:19 | EngineGetModelTextures diffhist −53 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:18 | EngineSetObjectGroupPhysicalProperty diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:18 | EngineRestoreObjectGroupPhysicalProperties diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:17 | EngineSetModelPhysicalPropertiesGroup diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:17 | EngineRestoreModelPhysicalPropertiesGroup diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:17 | EngineGetModelPhysicalPropertiesGroup diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:14 | EngineFreeModel diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:14 | EngineRequestModel diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
17:08 | EngineGetModelLODDistance diffhist −54 Fernando187 talk contribs (Remove obsolete Requirements section) |
22 October 2024
|
14:59 | EngineGetModelPhysicalPropertiesGroup 2 changes history +575 [Fernando187 (2×)] | |||
|
14:59 (cur | prev) +124 Fernando187 talk contribs | ||||
|
14:57 (cur | prev) +451 Fernando187 talk contribs |
29 August 2024
|
N 10:55 | EngineStreamingRequestModel 3 changes history +1,569 [TheNormalnij (3×)] | |||
|
10:55 (cur | prev) +339 TheNormalnij talk contribs (References counter) | ||||
|
09:48 (cur | prev) −6 TheNormalnij talk contribs | ||||
N |
|
09:47 (cur | prev) +1,236 TheNormalnij talk contribs (Created page with "__NOTOC__ {{Client function}} {{New feature/item|4|1.6.1|22676|This function sends a loading request to the game model streamer.}} ==Syntax== <syntaxhighlight lang="lua"> boolean engineStreamingRequestModel( number modelID [, boolean addRef = false, boolean isBlocking = false ] ) </syntaxhighlight> ===Required Arguments=== * '''modelID''': ID of the model you want to get flags. ===Optional Arguments=== {{OptionalArg}} * '''addRef''': increase references counter to pr...") |
N 09:59 | EngineStreamingReleaseModel diffhist +1,108 TheNormalnij talk contribs (Created page with "__NOTOC__ {{Client function}} {{New feature/item|4|1.6.1|22676|This function sends a unloading request to the game model streamer.}} ==Syntax== <syntaxhighlight lang="lua"> boolean engineStreamingReleaseModel( number modelID [, boolean removeRef = false ] ) </syntaxhighlight> ===Required Arguments=== * '''modelID''': ID of the model you want to unload. ===Optional Arguments=== {{OptionalArg}} * '''removeRef''': decrease references counter. ===Returns=== Returns ''tr...") |
N 09:16 | EngineStreamingGetModelLoadState diffhist +611 TheNormalnij talk contribs (Created page with "__NOTOC__ {{Client function}} {{New feature/item|4|1.6.1|22676|This function returns load state of model.}} ==Syntax== <syntaxhighlight lang="lua"> string engineStreamingGetModelLoadState( number modelID ) </syntaxhighlight> ===Required Arguments=== * '''modelID''': ID of the model you want to get flags. ===Returns=== Returns ''string'' with model load state. Possible load states: * unloaded - model is not loaded. * loaded - model is loaded. * requested - model is wa...") |
28 August 2024
11:21 | Template:Engine functions diffhist +172 TheNormalnij talk contribs (Add model streaming functions) |
19 August 2024
00:43 | EnginePreloadWorldArea diffhist −14 Megadreams talk contribs (Fixed return type (nil - function returns nothing)) |
18 August 2024
N 19:35 | EnginePreloadWorldArea diffhist +1,265 FileEX talk contribs (Created page with "{{Client function}} __NOTOC__ This function allows a specific area to be loaded '''immediately''', which can be useful when teleporting a player. The function is not based on a radius, but a specific zone is loaded. ==Syntax== <syntaxhighlight lang="lua"> bool enginePreloadWorldArea(float x, float y, float z [, string loadingOption = "all" ] ) </syntaxhighlight> ===Required Arguments=== *'''x:''' Position in the X axis. *'''y:''' Position in the Y axis *'''z:''' Pos...") |