forked from scfmod/fs19_LuaRefAutoGen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglobal_functions.lua
1250 lines (1250 loc) · 43.4 KB
/
global_functions.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---@param table table @this class table
---@param parent table @the parent class
function Class(table, parent) end
function InitClientOnce() end
function InitEventClass() end
function InitObjectClass() end
function InitStaticEventClass() end
function InitStaticObjectClass() end
function OnInGameMenuMenu() end
function OnLoadingScreen() end
function acceptedGameCreate() end
function acceptedGameInvite() end
function acceptedGameInvitePerformConnect() end
function addConsoleCommand() end
function addContactReport() end
function addDensityMapHeightAtWorldLine() end
function addDensityMapHeightAtWorldPos() end
function addDensityMapHeightOcclusionArea() end
function addDensityMapSyncerConnection() end
function addDensityMapSyncerDensityMap() end
function addDifferential() end
function addFeedingPlace() end
function addForce() end
function addHusbandryAnimal() end
function addImpulse() end
function addJointBreakReport() end
function addMilkingPlace() end
function addModEventListener() end
function addNotificationFilter() end
function addParticleSystemSimulationTime() end
function addReplacedCustomShader() end
function addSplitShapeConnection() end
function addSplitShapesShaderParameterOverwrite() end
function addTerrainDeformationArea() end
function addTerrainDeformationCircle() end
function addTerrainUpdateConnection() end
function addTimer() end
function addToPhysics() end
function addTorque() end
function addTorqueImpulse() end
function addTrackPoint() end
function addTrafficSystemPlayer() end
function addTrigger() end
function addVehicleLink() end
function addWakeUpReport() end
function aimCamera() end
function appIsSuspended() end
function applyTerrainDeformation() end
function areAchievementsAvailable() end
function areStatsAvailable() end
function asciiToUtf8() end
function assert() end
function assignAnimTrackClip() end
function autoStartLocalSavegame() end
function base64Decode() end
function base64Encode() end
function beginInputFuzzing() end
function bitAND() end
function bitHighestSet() end
function bitNOT() end
function bitOR() end
function bitShiftLeft() end
function bitShiftRight() end
function bitXOR() end
function buildNavMesh() end
function buildNavPath() end
function calcDistanceFrom() end
function calcDistanceSquaredFrom() end
function calculateFovY() end
function cancelAllStreamedI3DFiles() end
function cancelTerrainDeformation() end
function catmullRomInterpolator1() end
function catmullRomInterpolator3() end
function centerHeadTracking() end
function checkForNewDlcs() end
function cleanUpRenderingResources() end
function clearAnimTrackClip() end
function clearTerrainDeformationAreas() end
function clone() end
function cloneAnimCharacterSet() end
function closeIntervalTimer() end
function collectgarbage() end
function companionDebugDraw() end
function computeWheelShapeTireForces() end
function conditionalAnimationDebugDraw() end
function conditionalAnimationRegisterParameter() end
function conditionalAnimationZeroiseTrackTimes() end
function connectToServer() end
function consoleCommandChangeLanguage() end
function consoleCommandCleanI3DCache() end
function consoleCommandDrawGuiHelper() end
function consoleCommandDrawRawInput() end
function consoleCommandFuzzInput() end
function consoleCommandReloadCurrentGui() end
function consoleCommandSetDebugRenderingMode() end
function consoleCommandSetHighQuality() end
function consoleCommandShowSafeFrame() end
function consoleCommandSuspendApp() end
function consoleCommandToggleUiDebug() end
function consoleSetPowerConsumer() end
function consoleSetWiperState() end
function controlVehicle() end
function copyFile() end
function createAnimalCompanionManager() end
function createAnimalHusbandry() end
function createAudioSource() end
function createBitVectorMap() end
function createCCT() end
function createCamera() end
function createConditionalAnimation() end
function createDensityMapHeightUpdater() end
function createDensityMapSyncer() end
function createDensityMapVisualizationOverlay() end
function createFile() end
function createFillPlaneShape() end
function createFolder() end
function createFoliageBendingRectangle() end
function createFoliageBendingSystem() end
function createImageOverlay() end
function createImageOverlayWithTexture() end
function createLightSource() end
function createLowResCollisionHandler() end
function createNavMesh() end
function createNavPath() end
function createPedestrianSystem() end
function createRenderOverlay() end
function createReverbEffect() end
function createSample() end
function createSoundPlayer() end
function createStream() end
function createStreamedSample() end
function createTerrainDeformation() end
function createTerrainDetailUpdater() end
function createTerrainLayerTexture() end
function createTrack() end
function createTrafficSystem() end
function createTransformGroup() end
function createTyreTrackSystem() end
function createVideoOverlay() end
function createWebImageOverlay() end
function createWheelShape() end
---@param objectName string
---@param filename string
---@param rootNodeName string
---@return integer @xmlId
function createXMLFile(objectName, filename, rootNodeName) end
function cutTrack() end
function delete() end
function deleteFile() end
function deleteFolder() end
function destroyFoliageBendingObject() end
function destroyLowResCollisionHandler() end
function destroyTrack() end
function disableAnimTrack() end
function doExit() end
function dofile() end
function draw() end
function drawDebugArrow() end
function drawDebugLine() end
function drawDebugPoint() end
function drawDebugTriangle() end
function enableAnimTrack() end
function enableDevelopmentControls() end
function enableTerrainDeformationMode() end
function enableTerrainDeformationPaintingMode() end
function enableTerrainDeformationSmoothingMode() end
function endFrameRepeatMode() end
function entityExists() end
function eraseParallelogram() end
function error() end
function executeSettingsChange() end
function exportScenegraphToGraphviz() end
function exportScenegraphToGraphvizRec() end
function extraUpdatePhysics() end
function fileExists() end
function fileWrite() end
function fillPlaneAdd() end
function filterText() end
function findAndRemoveSplitShapeAttachments() end
function findPolyline() end
function findSplitShape() end
function finishWriteSplitShapesServerEvents() end
function finishedUserProfileSync() end
function flushPhysicsCaches() end
function flushWebCache() end
function forceEndFrameRepeatMode() end
function gcinfo() end
function generateDensityMapVisualizationOverlay() end
function get4kAvailable() end
function getAchievement() end
function getAdaptiveVsync() end
function getAngularDamping() end
function getAngularVelocity() end
function getAnimCharacterSet() end
function getAnimClipDuration() end
function getAnimClipIndex() end
function getAnimNumOfClips() end
function getAnimTrackAssignedClip() end
function getAnimTrackBlendWeight() end
function getAnimTrackTime() end
function getAnimalCompanionNeedNetworkUpdate() end
function getAnimalFromCollisionNode() end
function getAnimalPosition() end
function getAnimalRotation() end
function getAnimalShaderParameter() end
function getAppBasePath() end
function getAtmosphereCornettAsymetryFactor() end
function getAtmosphereMieScale() end
function getAudioSourceAutoPlay() end
function getAudioSourceInnerRange() end
function getAudioSourceRange() end
function getAudioSourceSample() end
function getAudioSourceTickInaudible() end
function getAutoPerformanceClass() end
function getBitVectorMapNumChannels() end
function getBitVectorMapParallelogram() end
function getBitVectorMapPoint() end
function getBitVectorMapSize() end
function getBloomMagnitude() end
function getBloomMaskThreshold() end
function getBloomQuality() end
function getBrightness() end
function getCCTCollisionFlags() end
function getCamera() end
function getCanRenderUnicode() end
function getCenterOfMass() end
function getChild() end
function getChildAt() end
function getChildIndex() end
function getClipDistance() end
function getClipDistancesWithLOD() end
function getCloudQuality() end
function getCollisionMask() end
function getCompanionClosestDistance() end
function getConditionalAnimationBoolValue() end
function getConditionalAnimationFloatValue() end
function getCorrectTextSize() end
function getCropsGrowthNextState() end
function getCropsGrowthStateTime() end
function getCullOverride() end
function getCurrentMasterVolume() end
function getDate() end
function getDateAt() end
function getDateDiffSeconds() end
function getDebugRenderingMode() end
function getDensity() end
function getDensityAtWorldPos() end
function getDensityHeightAtWorldPos() end
function getDensityMapCollisionHeightAtWorldPos() end
function getDensityMapFilename() end
function getDensityMapHeightFirstChannel() end
function getDensityMapHeightNumChannels() end
function getDensityMapHeightTypeAtWorldLine() end
function getDensityMapHeightTypeAtWorldPos() end
function getDensityMapMaxHeight() end
function getDensityMapSize() end
function getDensityNormalAtWorldPos() end
function getDensityRegion() end
function getDensityRegionWorld() end
function getDiscretePerformanceSetting() end
function getDlcPath() end
function getDoFblendWeights() end
function getDoFparams() end
function getEffectiveClipDistancesWithLOD() end
function getEffectiveVisibility() end
function getEmitCountScale() end
function getEmitStartTime() end
function getEmitStopTime() end
function getEmitterShape() end
function getEmitterSurfaceSize() end
function getEngineRevision() end
function getExposureKeyValue() end
function getExposureRange() end
function getExposureTau() end
function getFarClip() end
function getFileIdHasSplitShapes() end
function getFileMD5() end
function getFiles() end
function getFillPlaneHeightAtLocalPos() end
function getFilterAnisotropy() end
function getFilterTrilinear() end
function getFogPlaneHeight() end
function getFogPlaneMieScale() end
function getFoliageViewDistance() end
function getFoliageViewDistanceCoeff() end
function getFovY() end
function getFullscreen() end
function getGPUDriverVersion() end
function getGPUName() end
function getGPUVendor() end
function getGameRevisionExtraText() end
function getGameTerritory() end
function getGamepadAxisLabel() end
function getGamepadAxisPhysicalName() end
function getGamepadButtonLabel() end
function getGamepadButtonPhysicalName() end
function getGamepadCategory() end
function getGamepadDefaultDeadzone() end
function getGamepadEnabled() end
function getGamepadId() end
function getGamepadMappedUnknownAxis() end
function getGamepadMappedUnknownButton() end
function getGamepadName() end
function getGamepadProductId() end
function getGamepadVendorId() end
function getGamepadVersionId() end
function getGamepadVibrationEnabled() end
function getGeometry() end
function getGravityDirection() end
function getHasClassId() end
function getHasGamepadAxis() end
function getHasGamepadButton() end
function getHasShaderParameter() end
function getHasShadowFocusBox() end
function getHasTerrainNormalMapping() end
function getHaveAchievementsChanged() end
function getHdrAvailable() end
function getHeadTrackingRotation() end
function getHeadTrackingTranslation() end
function getHeadTrackingType() end
function getHmdYaw() end
function getInputAxis() end
function getInputButton() end
function getIsBadUserReputation() end
function getIsCompound() end
function getIsCompoundChild() end
function getIsDensityMapVisualizationOverlayReady() end
function getIsGamepadMappingReliable() end
function getIsInCameraFrustum() end
function getIsLanguageEnabled() end
function getIsOrthographic() end
function getIsPhysicsUpdateIndexSimulated() end
function getIsSleeping() end
function getIsSoundPlayerChannelStreamed() end
function getIsSplitShapeSplit() end
function getIsValidModDir() end
function getKeyName() end
function getLODDistanceCoeff() end
function getLanguage() end
function getLanguageCode() end
function getLanguageName() end
function getLevenshteinDistance() end
function getLightColor() end
function getLightRange() end
function getLightScatteringDirection() end
function getLinearDamping() end
function getLinearVelocity() end
function getLoadNamedInterpolatorCurve() end
function getLocalLinearVelocity() end
function getMD5() end
function getMSAA() end
function getMass() end
function getMasterVolume() end
function getMaterial() end
function getMaxNumOfParticles() end
function getMaxNumShadowLights() end
function getMinClipDistance() end
function getModCategoryName() end
function getModDependency() end
function getModDownloadAvailability() end
function getModDownloadPath() end
function getModFreeSpaceKb() end
function getModHubRating() end
function getModId() end
function getModInstallPath() end
function getModMetaAttributeBool() end
function getModMetaAttributeInt() end
function getModMetaAttributeString() end
function getModNameAndBaseDirectory() end
function getModNumDependencies() end
function getModUseAvailability() end
function getModUsedSpaceKb() end
function getMoonBrightnessScale() end
function getMoonSizeScale() end
function getMotorRotationSpeed() end
function getMotorTorque() end
function getMouseButtonName() end
function getMultiplayerAvailability() end
function getNATType() end
function getName(id) end
function getNavMeshDistanceToWall() end
function getNavPathDirection() end
function getNavPathHasValidSlope() end
function getNavPathIsValid() end
function getNavPathLength() end
function getNavPathNumOfWaypoints() end
function getNavPathOrientation() end
function getNavPathPosition() end
function getNavPathWaypoint() end
function getNearClip() end
function getNeoMode() end
function getNetworkError() end
function getNormalizedScreenValues() end
function getNormalizedUVs() end
function getNormalizedValues() end
function getNotification() end
function getNumDlcPaths() end
function getNumMaterials() end
function getNumModCategories() end
function getNumOfChildren() end
function getNumOfContactReports() end
function getNumOfGamepads() end
function getNumOfLanguages() end
function getNumOfMods() end
function getNumOfNotifications() end
function getNumOfParticlesToEmitPerMs() end
function getNumOfProcessors() end
function getNumOfScreenModes() end
function getNumOfSplitShapes() end
function getNumOfTriggers() end
function getNumSoundPlayerChannels() end
function getNumSoundPlayerItems() end
function getOSVersionName() end
function getObjectMask() end
function getOrthographicHeight() end
function getOverallVisibility() end
function getP2PNodeId() end
function getParent() end
function getParticleSystemAverageSpeed() end
function getParticleSystemLifespan() end
function getParticleSystemNormalSpeed() end
function getParticleSystemSpeed() end
function getParticleSystemSpeedRandom() end
function getParticleSystemSpriteScaleX() end
function getParticleSystemSpriteScaleXGain() end
function getParticleSystemSpriteScaleY() end
function getParticleSystemSpriteScaleYGain() end
function getParticleSystemTangentSpeed() end
function getPedestrianSystemNightTimeRange() end
function getPerformanceClass() end
function getPerlinNoise2D() end
function getPhysicsDt() end
function getPhysicsDtNonInterpolated() end
function getPhysicsDtUnclamped() end
function getPhysicsUpdateIndex() end
function getProcessorFrequency() end
function getProcessorName() end
function getProjectionOffset() end
function getQuaternion() end
function getRandomPlayerColor() end
function getReflectionMapRatio() end
function getRenderDriver() end
function getResolutionScaling() end
function getRigidBodyType() end
function getRootNode() end
function getRotation() end
function getSSAOIntensity() end
function getSSAOQuality() end
function getSampleDuration() end
function getSamplePitch() end
function getSamplePlayOffset() end
function getSamplePlayTimeLeft() end
function getSampleVelocity() end
function getSampleVolume() end
function getScale() end
function getScreenAspectRatio() end
function getScreenHdrOutput() end
function getScreenMode() end
function getScreenModeInfo() end
function getShaderParameter() end
function getShaderQuality() end
function getShaderTimeSec() end
function getShadowMapFilterSize() end
function getShadowMapSize() end
function getShadowQuality() end
function getSoundPlayerChannelName() end
function getSoundPlayerItemName() end
function getSplineCV() end
function getSplineDirection() end
function getSplineLength() end
function getSplineNumOfCV() end
function getSplineOrientation() end
function getSplinePosition() end
function getSplitShapePlaneExtents() end
function getSplitShapeStats() end
function getSplitType() end
function getStartMode() end
function getStartParameters() end
function getStreamedSampleVolume() end
function getSunBrightnessScale() end
function getSunSizeScale() end
function getSystemLanguage() end
function getTerrainAttributesAtWorldPos() end
function getTerrainDeformationBlockedAreaMapSize() end
function getTerrainDetailByName() end
function getTerrainDetailName() end
function getTerrainDetailNumChannels() end
function getTerrainDetailViewDistance() end
function getTerrainHeightAtWorldPos() end
function getTerrainHeightMapFilename() end
function getTerrainLODDistanceCoeff() end
function getTerrainLayerAtWorldPos() end
function getTerrainLayerName() end
function getTerrainLayerNumOfSubLayers() end
function getTerrainLayerSubLayer() end
function getTerrainLodBlendDistances() end
function getTerrainLodBlendDynamicDistances() end
function getTerrainLodNormalMapFilename() end
function getTerrainLodTypeMapFilename() end
function getTerrainNormalAtWorldPos() end
function getTerrainNumOfLayers() end
function getTerrainSize() end
function getText3DHeight() end
function getText3DLength() end
function getText3DLineLength() end
function getText3DWidth() end
function getTextHeight() end
function getTextLength() end
function getTextLineLength() end
function getTextWidth() end
function getTextureResolution() end
function getTime() end
function getTimeSec() end
function getTotalSystemMemory() end
function getTrafficSystemNightTimeRange() end
function getTranslation() end
function getTyreTracksSegmentsCoeff() end
function getUniqueUserId() end
function getUseDoF() end
function getUseLightScattering() end
function getUserAttribute() end
function getUserId() end
function getUserName() end
function getUserProfileAppPath() end
function getVelocityAtLocalPos() end
function getVelocityAtWorldPos() end
function getVideoOverlayCurrentTime() end
function getVideoOverlayDuration() end
function getViewDistanceCoeff() end
function getVisibility() end
function getVolume() end
function getVolumeMeshTessellationCoeff() end
function getVsync() end
function getWheelShapeAxleSpeed() end
function getWheelShapeContactForce() end
function getWheelShapeContactNormal() end
function getWheelShapeContactObject() end
function getWheelShapeContactPoint() end
function getWheelShapePosition() end
function getWheelShapeSlip() end
function getWorldQuaternion() end
function getWorldRotation() end
function getWorldTranslation() end
function getXMLBool() end
function getXMLFloat() end
function getXMLInt() end
function getXMLRootName() end
function getXMLString() end
function getfenv() end
function getmetatable() end
function hasNativeAchievementGUI() end
function hasXMLProperty() end
function haveModsChanged() end
function hideAnimal() end
function imeAbort() end
function imeGetCursorPos() end
function imeGetLastString() end
function imeIsComplete() end
function imeIsOpen() end
function imeIsSupported() end
function imeOpen() end
function inAppFinishPendingPurchase() end
function inAppFinishPurchase() end
function inAppGetNumPendingPurchases() end
function inAppGetPendingPurchaseProductId() end
function inAppGetProductDescription() end
function inAppGetProductPrice() end
function inAppInit() end
function inAppIsLoaded() end
function inAppStartPurchase() end
function init() end
function initAchievements() end
function initConditionalAnimation() end
function initDensityMapHeightTypeProperties() end
function initModDownloadManager() end
function inspectTableAndPrint() end
function installMod() end
function ipairs() end
function is4kVideoMode() end
function isAbsolutPath() end
function isAnimTrackClipAssigned() end
function isAnimTrackEnabled() end
function isAnimalVisible() end
function isGameFullyInstalled() end
function isGamepadSigninPending() end
function isHeadTrackingAvailable() end
function isHusbandryReady() end
function isModUpdateRunning() end
function isSamplePlaying() end
function isSoundPlayerLoaded() end
function isSoundPlayerPlaying() end
function isUsingHmd() end
function isVideoOverlayPlaying() end
function keyEvent() end
function linearInterpolator1() end
function linearInterpolator2() end
function linearInterpolator3() end
function linearInterpolator4() end
function linearInterpolatorN() end
function linearInterpolatorTransRotScale() end
function link() end
function load() end
function loadAmbientSound() end
function loadBitVectorMapFromFile() end
function loadBitVectorMapNew() end
function loadCropsGrowthStateFromFile() end
function loadDlcs() end
function loadDlcsDirectories() end
function loadDlcsFromDirectory() end
function loadI3DFile() end
function loadInterpolator1Curve() end
function loadInterpolator2Curve() end
function loadInterpolator3Curve() end
function loadInterpolator4Curve() end
function loadLanguageSettings() end
function loadMod() end
function loadModDesc() end
function loadMods() end
function loadSample() end
function loadServerSettings() end
function loadSplitShapesFromFile() end
function loadStreamedSample() end
function loadTerrainDetailUpdaterStateFromFile() end
function loadUserSettings() end
function loadXMLFile() end
function loadXMLFileFromMemory() end
function loadfile() end
function loadstring() end
function localDirectionToLocal() end
function localDirectionToWorld() end
function localRotationToLocal() end
function localRotationToWorld() end
function localToLocal() end
function localToWorld() end
function log() end
function makeSplittable() end
function masterServerAddAvailableMod() end
function masterServerAddAvailableModEnd() end
function masterServerAddAvailableModStart() end
function masterServerAddDlc() end
function masterServerAddDlcEnd() end
function masterServerAddDlcStart() end
function masterServerAddServer() end
function masterServerAddServerMod() end
function masterServerAddServerModEnd() end
function masterServerAddServerModStart() end
function masterServerDisconnect() end
function masterServerInit() end
function masterServerReconnect() end
function masterServerRequestConnectionToServer() end
function masterServerRequestFilteredServers() end
function masterServerRequestServerDetails() end
function masterServerSetCallbacks() end
function masterServerSetNumPlayers() end
function masterServerSetServerInfo() end
function mathEulerRotateVector() end
function mathEulerToQuaternion() end
function mathQuaternionRotateVector() end
function meshNetworkAddNode() end
function meshNetworkBegin() end
function meshNetworkBeginConfig() end
function meshNetworkEnd() end
function meshNetworkEndConfig() end
function meshNetworkGetNodeStatusForApp() end
function modDownloadManagerLoaded() end
function modDownloadManagerUpdateSync() end
function mouseEvent() end
function moveCCT() end
function navMeshRaycast() end
function netCloseConnection() end
function netGetAndResetConnectionSendStats() end
function netGetBandwidthEstimate() end
function netGetConnectionStats() end
function netGetDefaultLocalIp() end
function netGetHostByAddr() end
function netGetTime() end
function netSendStream() end
function netSetIncomingPassword() end
function netSetIsEventProcessingEnabled() end
function netSetMaximumIncomingConnections() end
function netShutdown() end
function netStartup() end
function new2DLayer() end
function newproxy() end
function next() end
function nextMessageTypeId() end
function notificationsLoaded() end
function onBlockedListChanged() end
function onDeepLinkingFailed() end
function onFriendListChanged() end
function onOkSigninAccept() end
function onShowDeepLinkingErrorMsg() end
function openIntervalTimer() end
function openMpFriendInvitation() end
function openNativeHelpMenu() end
function openWebFile() end
function overlapBox() end
function overlapSphere() end
function pairs() end
function pauseSoundPlayer() end
function pauseStreamedSample() end
function pcall() end
function playSample() end
function playSoundPlayer() end
function playStreamedSample() end
function playVideoOverlay() end
function prepareSaveBitVectorMapToFile() end
function prepareSaveDensityMapToFile() end
function prepareSaveSplitShapesToFile() end
function prepareSaveTerrainHeightMap() end
function prepareSaveTerrainLodTypeMap() end
function prepareSplitShapesServerWriteUpdateStream() end
function print() end
function printCallstack() end
function printScenegraph() end
function printScenegraphRec() end
function printStatsOverlay() end
function print_r() end
function printf() end
function project() end
function projectToCamera() end
function promptUserConfirmScreenMode() end
function quaternionInterpolator() end
function quaternionInterpolator2() end
function rawequal() end
function rawget() end
function rawset() end
function raycastAll() end
function raycastClosest() end
function readAnimalCompanionManagerFromStream() end
function readBitVectorMapFromStream() end
function readDensityDataFromStream() end
function readDensityMapSyncerServerUpdateFromStream() end
function readIntervalTimerMs() end
function readSplitShapeIdFromStream() end
function readSplitShapesClientUpdateFromStream() end
function readSplitShapesFromStream() end
function readSplitShapesServerEventFromStream() end
function readSplitShapesServerUpdateFromStream() end
function readTerrainUpdateStream() end
function readTrafficSystemFromStream() end
function registerGlobalActionEvents() end
function registerHandTool() end
function registerObjectClassName() end
function reloadDlcsAndMods() end
function removeAllDifferentials() end
function removeCCT() end
function removeConsoleCommand() end
function removeContactReport() end
function removeDensityMapSyncerConnection() end
function removeFromPhysics() end
function removeHusbandryAnimal() end
function removeJoint() end
function removeJointBreakReport() end
function removeModEventListener() end
function removeSplitShapeAttachments() end
function removeSplitShapeConnection() end
function removeSplitShapesShaderParameterOverwrite() end
function removeTerrainUpdateConnection() end
function removeTimer() end
function removeTrafficSystemPlayer() end
function removeTrigger() end
function removeWakeUpReport() end
function removeXMLProperty() end
function render360Screenshot() end
function renderEnvProbe() end
function renderOverlay() end
function renderScreenshot() end
function renderText() end
function renderText3D() end
function replaceUnrenderableCharacters() end
function reportAnimalThreat() end
function requestExit() end
function requestGamepadSignin() end
function resetAutoExposure() end
function resetDensityMapVisualizationOverlay() end
function resetEmitStartTimer() end
function resetEmitStopTimer() end
function resetModOnCreateFunctions() end
function resetMultiplayerChecks() end
function resetNumOfEmittedParticles() end
function resetSplitShapes() end
function resetTrafficSystem() end
function restartApplication() end
function resumeStreamedSample() end
function rotate() end
function rotateAboutLocalAxis() end
function saveBitVectorMapToFile() end
function saveCancelUpdateList() end
function saveCropsGrowthStateToFile() end
function saveDeleteSavegame() end
function saveDensityMapToFile() end
function saveGetHasSpaceForSaveGame() end
function saveGetInfo() end
function saveGetInfoById() end
function saveGetNumOfSaveGames() end
function saveGetUploadState() end
function saveHardwareScalability() end
function savePreparedBitVectorMapToFile() end
function savePreparedDensityMapToFile() end
function savePreparedSplitShapesToFile() end
function savePreparedTerrainHeightMap() end
function savePreparedTerrainLodTypeMap() end
function saveReadSavegameCancel() end
function saveReadSavegameFinish() end
function saveReadSavegameGetProgress() end
function saveReadSavegameHasProgress() end
function saveReadSavegameStart() end
function saveResetStorageDeviceSelection() end
function saveResolveConflict() end
function saveScreenshot() end
function saveSetCloudErrorCallback() end
function saveSplitShapesToFile() end
function saveTerrainDetailUpdaterStateToFile() end
function saveTerrainHeightMap() end
function saveTerrainLodNormalMap() end
function saveTerrainLodTypeMap() end
function saveUpdateList() end
function saveWriteSavegameFinish() end
function saveWriteSavegameStart() end
function saveXMLFile() end
function saveXMLFileTo() end
function saveXMLFileToMemory() end
function searchText() end
function select() end
function setAdaptiveVsync() end
function setAngularDamping() end
function setAngularVelocity() end
function setAnimTrackBlendWeight() end
function setAnimTrackLoopState() end
function setAnimTrackSpeedScale() end
function setAnimTrackTime() end
function setAnimalDaytime() end
function setAnimalInteressNode() end
function setAnimalShaderParameter() end
function setAnimalTextureTile() end
function setAtmosphereCornettAsymetryFactor() end
function setAtmosphereMieScale() end
function setAtmosphereSecondaryLightSource() end
function setAudioCullingWorldProperties() end
function setAudioGroupVolume() end
function setAudioSourceAutoPlay() end
function setAudioSourceInnerRange() end
function setAudioSourceRange() end
function setAudioSourceTickInaudible() end
function setBitVectorMapParallelogram() end
function setBloomMagnitude() end
function setBloomMaskThreshold() end
function setBloomQuality() end
function setBrightness() end
function setCCTPosition() end
function setCamera() end
function setCaption() end
function setCenterOfMass() end
function setClipDistance() end
function setCloudFront() end
function setCloudQuality() end
function setCollisionMask() end
function setColorGradingSettings() end
function setCompanionArriveSteeringParameters() end
function setCompanionBehaviorIdleStay() end
function setCompanionBehaviorIdleWander() end
function setCompanionBehaviorWanderParameters() end
function setCompanionCommonSteeringParameters() end
function setCompanionDaytime() end
function setCompanionFeed() end
function setCompanionFetch() end
function setCompanionFollowEntity() end
function setCompanionGotoEntity() end
function setCompanionPet() end
function setCompanionPosition() end
function setCompanionSteeringTarget() end
function setCompanionSteeringWeights() end
function setCompanionThreat() end
function setCompanionTrigger() end
function setCompanionWanderSteeringParameters() end
function setCompanionWaterLevel() end
function setCompanionsPhysicsUpdate() end
function setCompanionsVisibility() end
function setConditionalAnimationBoolValue() end
function setConditionalAnimationFloatValue() end
function setConditionalAnimationSpecificParameterIds() end
function setCropsEnableGrowth() end
function setCropsGrowthMask() end
function setCropsGrowthNextState() end
function setCropsGrowthStateTime() end
function setCropsIgnoreDensityChanges() end
function setCropsMaxNumCellsPerFrame() end
function setCropsNumGrowthStates() end
function setCullOverride() end
function setCurrentMasterVolume() end
function setCurrentProcessPriority() end
function setDebugRenderingMode() end
function setDensityMapHeightCollisionMap() end
function setDensityMapHeightTypeProperties() end
function setDensityMapSyncerLostPacket() end
function setDensityMapVisualizationOverlayGrowthStateColor() end
function setDensityMapVisualizationOverlayStateBorderColor() end
function setDensityMapVisualizationOverlayStateColor() end
function setDensityMapVisualizationOverlayTypeColor() end
function setDensityMapVisualizationOverlayTypedStateColor() end
function setDensityMapVisualizationOverlayUpdateTimeLimit() end
function setDirection() end
function setDiscretePerformanceSetting() end
function setDoFblendWeights() end
function setDoFparams() end
function setDropCountScale() end
function setEmitCountScale() end
function setEmitStartTime() end
function setEmitStopTime() end
function setEmitterShape() end
function setEmittingState() end
function setEnableAmbientSound() end
function setEnableBetaMods() end
function setEnvMap() end
function setExposureKeyValue() end
function setExposureRange() end
function setExposureTau() end
function setFarClip() end
function setFileLogPrefixTimestamp() end
function setFillPlaneMaxPhysicalSurfaceAngle() end
function setFilterAnisotropy() end
function setFilterTrilinear() end
function setFogPlaneHeight() end
function setFogPlaneMieScale() end
function setFoliageBendingSystem() end
function setFoliageViewDistanceCoeff() end
function setFovY() end
function setFramerateLimiter() end
function setFrictionVelocity() end
function setFullscreen() end
function setGamepadDeadzone() end
function setGamepadDefaultDeadzone() end
function setGamepadDigitalOutput() end
function setGamepadEnabled() end
function setGamepadVibration() end
function setGamepadVibrationEnabled() end
function setGlobalCloudState() end
function setHasShadowFocusBox() end
function setHasTerrainNormalMapping() end
function setInvertStereoRendering() end
function setIsCompound() end
function setIsCompoundChild() end
function setIsOrthographic() end
function setJointDrive() end
function setJointFrame() end
function setJointPosition() end
function setJointRotationLimit() end
function setJointRotationLimitForceLimit() end
function setJointRotationLimitSpring() end
function setJointTranslationLimit() end
function setJointTranslationLimitForceLimit() end
function setJointTranslationLimitSpring() end
function setLODDistanceCoeff() end
function setLanguage() end
function setLightColor() end
function setLightCullingWorldProperties() end
function setLightRange() end
function setLightScatteringColor() end
function setLightScatteringDirection() end
function setLightShadowMap() end
function setLinearDamping() end
function setLinearVelocity() end
function setLowResCollisionHandlerTerrainRootNode() end
function setLuaErrorHandler() end
function setMSAA() end
function setMass() end
function setMasterVolume() end
function setMaterial() end
function setMaterialDiffuseMap() end
function setMaterialNormalMap() end
function setMaxNumOfParticles() end
function setMaxNumOfReflectionPlanes() end
function setMaxNumShadowLights() end
function setMilkingPlaceDoors() end
function setMinClipDistance() end
function setModDownloadManagerRecommenderParams() end
function setModHubRating() end
function setModInstalled() end
function setMoonBrightnessScale() end
function setMoonSizeScale() end
function setMotorProperties() end
function setName() end
function setNearClip() end
function setNumOfParticlesToEmitPerMs() end
function setObjectMask() end
function setOrthographicHeight() end
function setOverlayColor() end
function setOverlayLayer() end
function setOverlayRotation() end
function setOverlayUVs() end
function setPairCollision() end
function setParticleSystemLifespan() end
function setParticleSystemNormalSpeed() end
function setParticleSystemSpeed() end
function setParticleSystemSpeedRandom() end
function setParticleSystemSpriteScaleX() end
function setParticleSystemSpriteScaleXGain() end
function setParticleSystemSpriteScaleY() end
function setParticleSystemSpriteScaleYGain() end