gg.easy.airship 0.1.2148 → 0.1.2150

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (121) hide show
  1. package/Editor/Easy.Airship.Editor.asmdef +2 -1
  2. package/Editor/Toolbar/EditorToolbar.cs +7 -0
  3. package/Editor/TypescriptCompiler~/utsc.js +113 -113
  4. package/Editor/TypescriptServices/Compiler/TypescriptCompilationService.cs +6 -4
  5. package/Editor/TypescriptServices/Editor/TypescriptLogService.cs +4 -0
  6. package/Editor/TypescriptServices/Editor/TypescriptOptions.cs +1 -0
  7. package/Editor/TypescriptServices/Editor/TypescriptServicesStatusWindow.cs +3 -2
  8. package/Editor/TypescriptServices/Editor/TypescriptStatusbar.cs +1 -1
  9. package/Editor/TypescriptServices/TypescriptServices.cs +62 -21
  10. package/Runtime/Code/Airship/Resources/Scripts/Editor/Airship.Airship.Editor.asmdef +2 -1
  11. package/Runtime/Code/Airship/Resources/Scripts/MeshCombiner.cs +3 -1
  12. package/Runtime/Code/Airship/Resources/Scripts/MeshCopy.cs +15 -10
  13. package/Runtime/Code/AirshipConst.cs +2 -2
  14. package/Runtime/Code/Bootstrap/ServerBootstrap.cs +1 -1
  15. package/Runtime/Code/Bundles/Airship.Bundles.asmdef +2 -1
  16. package/Runtime/Code/CoreUI/Loading/CoreLoadingScreen.cs +4 -0
  17. package/Runtime/Code/Crc32/Crc32Algorithm.cs +192 -0
  18. package/Runtime/Code/Crc32/Crc32Algorithm.cs.meta +3 -0
  19. package/Runtime/Code/Crc32/LICENSE +21 -0
  20. package/Runtime/Code/Crc32/LICENSE.meta +3 -0
  21. package/Runtime/Code/Crc32/SafeProxy.cs +76 -0
  22. package/Runtime/Code/Crc32/SafeProxy.cs.meta +3 -0
  23. package/Runtime/Code/Crc32.meta +3 -0
  24. package/Runtime/Code/Luau/Airship.LuauCore.asmdef +1 -0
  25. package/Runtime/Code/Luau/AirshipComponent.cs +13 -4
  26. package/Runtime/Code/Luau/AirshipComponentTriggerEvents.cs +20 -0
  27. package/Runtime/Code/Luau/AirshipComponentTriggerEvents.cs.meta +2 -0
  28. package/Runtime/Code/Luau/BinaryBlob.cs +100 -6
  29. package/Runtime/Code/Luau/LuauCompiler.cs +1 -1
  30. package/Runtime/Code/Luau/LuauCore.cs +15 -29
  31. package/Runtime/Code/Luau/LuauCoreCallbacks.cs +275 -243
  32. package/Runtime/Code/Luau/LuauCoreReflection.cs +16 -0
  33. package/Runtime/Code/Luau/LuauMetadata.cs +4 -1
  34. package/Runtime/Code/Luau/LuauMetadataPropertySerializer.cs +4 -0
  35. package/Runtime/Code/Luau/LuauScript.cs +4 -0
  36. package/Runtime/Code/Luau/ReflectionList.cs +10 -0
  37. package/Runtime/Code/Luau/ThreadManager.cs +14 -0
  38. package/Runtime/Code/Luau/TypeReflection.cs +2 -1
  39. package/Runtime/Code/LuauAPI/AirshipBehaviourHelper.cs +16 -2
  40. package/Runtime/Code/LuauAPI/EditorPrefsAPI.cs +11 -0
  41. package/Runtime/Code/LuauAPI/EditorPrefsAPI.cs.meta +3 -0
  42. package/Runtime/Code/LuauAPI/GameObjectAPI.cs +15 -5
  43. package/Runtime/Code/LuauAPI/KeyframeAPI.cs +9 -0
  44. package/Runtime/Code/LuauAPI/KeyframeAPI.cs.meta +3 -0
  45. package/Runtime/Code/LuauAPI/SplineContainerAPI.cs +9 -0
  46. package/Runtime/Code/LuauAPI/SplineContainerAPI.cs.meta +2 -0
  47. package/Runtime/Code/Managers/CanvasDistanceManager.cs +49 -0
  48. package/Runtime/Code/Managers/CanvasDistanceManager.cs.meta +3 -0
  49. package/Runtime/Code/Misc/CanvasDistanceCondition.cs +15 -15
  50. package/Runtime/Code/Network/AirshipNetworkManager.cs +9 -1
  51. package/Runtime/Code/Network/Simulation/AirshipNetworkedObject.cs +9 -9
  52. package/Runtime/Code/Network/Simulation/AirshipSimulationManager.cs +122 -80
  53. package/Runtime/Code/Network/Simulation/History.cs +78 -60
  54. package/Runtime/Code/Network/Simulation/ObserveableHistory.cs +242 -0
  55. package/Runtime/Code/Network/Simulation/ObserveableHistory.cs.meta +3 -0
  56. package/Runtime/Code/Network/StateSystem/AirshipNetworkedStateManager.cs +439 -278
  57. package/Runtime/Code/Network/StateSystem/Implementations/TestMovementSystem/TestMovement.cs +10 -9
  58. package/Runtime/Code/Network/StateSystem/Implementations/TestMovementSystem/TestMovementDiff.cs +7 -0
  59. package/Runtime/Code/Network/StateSystem/Implementations/TestMovementSystem/TestMovementDiff.cs.meta +3 -0
  60. package/Runtime/Code/Network/StateSystem/Implementations/TestMovementSystem/TestMovementState.cs +4 -4
  61. package/Runtime/Code/Network/StateSystem/Implementations/TestMovementSystem/TestNetworkedStateManager.cs +26 -7
  62. package/Runtime/Code/Network/StateSystem/NetworkedStateSystem.cs +9 -9
  63. package/Runtime/Code/Network/StateSystem/Structures/InputCommand.cs +5 -4
  64. package/Runtime/Code/Network/StateSystem/Structures/StateDiff.cs +24 -0
  65. package/Runtime/Code/Network/StateSystem/Structures/StateDiff.cs.meta +3 -0
  66. package/Runtime/Code/Network/StateSystem/Structures/StateSnapshot.cs +29 -3
  67. package/Runtime/Code/Player/Accessories/AccessoryComponent.cs +7 -4
  68. package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterMovement.cs +84 -57
  69. package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterNetworkedStateManager.cs +30 -10
  70. package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterPhysics.cs +3 -1
  71. package/Runtime/Code/Player/Character/MovementSystems/Character/Structures/CharacterInputData.cs +50 -1
  72. package/Runtime/Code/Player/Character/MovementSystems/Character/Structures/CharacterSnapshotData.cs +243 -54
  73. package/Runtime/Code/Player/Character/MovementSystems/Character/Structures/CharacterStateDiff.cs +31 -0
  74. package/Runtime/Code/Player/Character/MovementSystems/Character/Structures/CharacterStateDiff.cs.meta +3 -0
  75. package/Runtime/Code/PoolManager/Airship.PoolManager.asmdef +2 -1
  76. package/Runtime/Code/PoolManager/PoolManager.cs +3 -3
  77. package/Runtime/Code/TSCodeGen/Editor/CsToTs/CsToTs.asmdef +3 -1
  78. package/Runtime/Code/TSCodeGen/TypeGenerator.cs +7 -0
  79. package/Runtime/Code/Transfer/TransferManager.cs +9 -0
  80. package/Runtime/Code/Util/BitUtil.cs +22 -0
  81. package/Runtime/Code/Util/BitUtil.cs.meta +3 -0
  82. package/Runtime/Code/Util/NetworkSerializationUtil.cs +40 -0
  83. package/Runtime/Code/Util/NetworkSerializationUtil.cs.meta +3 -0
  84. package/Runtime/Code/VoxelWorld/Editor/Airship.VoxelWorld.Editor.asmdef +2 -1
  85. package/Runtime/Code/VoxelWorld/Editor/VoxelBuilderEditorWindow.cs +16 -5
  86. package/Runtime/Code/VoxelWorld/Editor/VoxelWorldEditor.cs +19 -11
  87. package/Runtime/Code/VoxelWorld/Resources/SelectIcon.png +0 -0
  88. package/Runtime/Code/VoxelWorld/Resources/VoxelIcon.png +0 -0
  89. package/Runtime/Code/VoxelWorld/Resources/VoxelWorldAtlasURP.shadergraph +3151 -856
  90. package/Runtime/Code/VoxelWorld/Resources/VoxelWorldMatURP.mat +6 -0
  91. package/Runtime/Code/VoxelWorld/TexturePacker.cs +34 -0
  92. package/Runtime/Code/VoxelWorld/VoxelBlocks.cs +56 -408
  93. package/Runtime/Code/VoxelWorld/VoxelMeshProcessor.cs +309 -102
  94. package/Runtime/Code/VoxelWorld/VoxelWorld.cs +130 -54
  95. package/Runtime/Code/VoxelWorld/VoxelWorldChunk.cs +158 -140
  96. package/Runtime/Code/VoxelWorld/VoxelWorldCollision.cs +43 -7
  97. package/Runtime/Code/VoxelWorld/WorldSaveFile.cs +9 -8
  98. package/Runtime/Plugins/Android/libLuauPlugin.so +0 -0
  99. package/Runtime/Plugins/Linux/libLuauPlugin.so +0 -0
  100. package/Runtime/Plugins/Mac/LuauPlugin.bundle/Contents/MacOS/LuauPlugin +0 -0
  101. package/Runtime/Plugins/Windows/x64/LuauPlugin.dll +0 -0
  102. package/Runtime/Plugins/Windows/x64/LuauPlugin.pdb +0 -0
  103. package/Runtime/Plugins/iOS/LuauPluginIos.a +0 -0
  104. package/Runtime/Prefabs/Network.prefab +3 -3
  105. package/Runtime/Scenes/CoreScene.unity +680 -286
  106. package/ThirdParty/Graphy - Ultimate Stats Monitor/Editor/Tayx.Graphy.Editor.asmdef +4 -1
  107. package/ThirdParty/Graphy - Ultimate Stats Monitor/Runtime/Tayx.Graphy.asmdef +2 -1
  108. package/ThirdParty/Mirror/Components/NetworkStatistics.cs +12 -7
  109. package/ThirdParty/Mirror/Core/NetworkClient.cs +5 -1
  110. package/ThirdParty/Mirror/Core/NetworkClient_TimeInterpolation.cs +18 -14
  111. package/ThirdParty/Mirror/Core/NetworkConnection.cs +1 -1
  112. package/ThirdParty/Mirror/Core/NetworkConnectionToClient.cs +14 -11
  113. package/ThirdParty/Mirror/Core/NetworkLoop.cs +1 -1
  114. package/ThirdParty/Mirror/Core/NetworkManager.cs +3 -0
  115. package/ThirdParty/Mirror/Core/NetworkServer.cs +48 -34
  116. package/ThirdParty/Mirror/Core/NetworkTime.cs +1 -1
  117. package/ThirdParty/Mirror/Core/SnapshotInterpolation/SnapshotInterpolation.cs +54 -35
  118. package/ThirdParty/Mirror/Core/SnapshotInterpolation/SnapshotInterpolationSettings.cs +2 -2
  119. package/package.json +1 -1
  120. package/Runtime/Code/Misc/Vector3Util.cs +0 -23
  121. package/Runtime/Code/Misc/Vector3Util.cs.meta +0 -11
@@ -66,7 +66,8 @@
66
66
  "GUID:6e5063adab271564ba0098a06a8cebda",
67
67
  "GUID:3b5390adca4e2bb4791cb930316d6f3e",
68
68
  "GUID:725ee7191c021de4dbf9269590ded755",
69
- "GUID:2a0340569ab0e1245a38e0d6c7b2529b"
69
+ "GUID:2a0340569ab0e1245a38e0d6c7b2529b",
70
+ "GUID:befe48b9a36afc04ea625c93daad910e"
70
71
  ],
71
72
  "includePlatforms": [
72
73
  "Editor"
@@ -408,6 +408,8 @@ namespace Airship.Editor
408
408
  compilerText = TypescriptCompilationService.ShowDeveloperOptions && !TypescriptCompilationService.Crashed ? $" TypeScript" : "";
409
409
  }
410
410
 
411
+
412
+
411
413
  var isDev = false;
412
414
  if (TypescriptCompilationService.CompilerVersion ==
413
415
  TypescriptCompilerVersion.UseLocalDevelopmentBuild) {
@@ -426,6 +428,11 @@ namespace Airship.Editor
426
428
  false => $"Using the {compilerName}",
427
429
  };
428
430
 
431
+ if (!TypescriptServices.IsCompilerActive && !TypescriptServices.IsAwaitingRestart) {
432
+ compilerText = " TypeScript [Inactive]";
433
+ tooltip = "The typescript compiler is not running!";
434
+ }
435
+
429
436
  var style = new GUIStyle(ToolbarStyles.CompilerServicesButtonStyle);
430
437
  if (project.HasCrashed && !TypescriptCompilationService.IsWatchModeRunning) {
431
438
  compilerText = " Typescript <CRASHED>";