gg.easy.airship 0.1.2149 → 0.1.2151

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 (69) hide show
  1. package/Editor/Toolbar/EditorToolbar.cs +7 -0
  2. package/Editor/TypescriptCompiler~/utsc.js +113 -113
  3. package/Editor/TypescriptServices/Compiler/TypescriptCompilationService.cs +6 -4
  4. package/Editor/TypescriptServices/Editor/TypescriptLogService.cs +4 -0
  5. package/Editor/TypescriptServices/Editor/TypescriptOptions.cs +1 -0
  6. package/Editor/TypescriptServices/Editor/TypescriptServicesStatusWindow.cs +3 -2
  7. package/Editor/TypescriptServices/Editor/TypescriptStatusbar.cs +1 -1
  8. package/Editor/TypescriptServices/TypescriptServices.cs +62 -21
  9. package/Runtime/Code/CoreUI/Loading/CoreLoadingScreen.cs +4 -0
  10. package/Runtime/Code/Luau/LuauCore.cs +15 -29
  11. package/Runtime/Code/Luau/LuauCoreCallbacks.cs +273 -243
  12. package/Runtime/Code/Luau/LuauCoreReflection.cs +16 -0
  13. package/Runtime/Code/Luau/LuauMetadataPropertySerializer.cs +4 -0
  14. package/Runtime/Code/Luau/ReflectionList.cs +9 -0
  15. package/Runtime/Code/Luau/ThreadManager.cs +14 -0
  16. package/Runtime/Code/Luau/TypeReflection.cs +2 -1
  17. package/Runtime/Code/LuauAPI/EditorPrefsAPI.cs +11 -0
  18. package/Runtime/Code/LuauAPI/EditorPrefsAPI.cs.meta +3 -0
  19. package/Runtime/Code/LuauAPI/KeyframeAPI.cs +9 -0
  20. package/Runtime/Code/LuauAPI/KeyframeAPI.cs.meta +3 -0
  21. package/Runtime/Code/Network/AirshipNetworkManager.cs +9 -1
  22. package/Runtime/Code/Network/Simulation/AirshipNetworkedObject.cs +1 -1
  23. package/Runtime/Code/Network/Simulation/AirshipSimulationManager.cs +57 -14
  24. package/Runtime/Code/Network/Simulation/History.cs +8 -6
  25. package/Runtime/Code/Network/Simulation/ObserveableHistory.cs +7 -6
  26. package/Runtime/Code/Network/StateSystem/AirshipNetworkedStateManager.cs +223 -156
  27. package/Runtime/Code/Network/StateSystem/NetworkedStateSystem.cs +1 -1
  28. package/Runtime/Code/Network/StateSystem/Structures/InputCommand.cs +1 -0
  29. package/Runtime/Code/Network/StateSystem/Structures/StateSnapshot.cs +2 -2
  30. package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterMovement.cs +68 -51
  31. package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterNetworkedStateManager.cs +1 -0
  32. package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterPhysics.cs +3 -1
  33. package/Runtime/Code/Player/Character/MovementSystems/Character/Structures/CharacterSnapshotData.cs +28 -22
  34. package/Runtime/Code/PoolManager/PoolManager.cs +2 -2
  35. package/Runtime/Code/TSCodeGen/TypeGenerator.cs +3 -0
  36. package/Runtime/Code/Transfer/TransferManager.cs +9 -0
  37. package/Runtime/Code/VoxelWorld/Editor/VoxelBuilderEditorWindow.cs +16 -5
  38. package/Runtime/Code/VoxelWorld/Editor/VoxelWorldEditor.cs +19 -11
  39. package/Runtime/Code/VoxelWorld/Resources/SelectIcon.png +0 -0
  40. package/Runtime/Code/VoxelWorld/Resources/VoxelIcon.png +0 -0
  41. package/Runtime/Code/VoxelWorld/Resources/VoxelWorldAtlasURP.shadergraph +3151 -856
  42. package/Runtime/Code/VoxelWorld/Resources/VoxelWorldMatURP.mat +6 -0
  43. package/Runtime/Code/VoxelWorld/TexturePacker.cs +34 -0
  44. package/Runtime/Code/VoxelWorld/VoxelBlocks.cs +56 -408
  45. package/Runtime/Code/VoxelWorld/VoxelMeshProcessor.cs +309 -102
  46. package/Runtime/Code/VoxelWorld/VoxelWorld.cs +130 -54
  47. package/Runtime/Code/VoxelWorld/VoxelWorldChunk.cs +158 -140
  48. package/Runtime/Code/VoxelWorld/VoxelWorldCollision.cs +43 -7
  49. package/Runtime/Code/VoxelWorld/WorldSaveFile.cs +9 -8
  50. package/Runtime/Plugins/Android/libLuauPlugin.so +0 -0
  51. package/Runtime/Plugins/Linux/libLuauPlugin.so +0 -0
  52. package/Runtime/Plugins/Mac/LuauPlugin.bundle/Contents/MacOS/LuauPlugin +0 -0
  53. package/Runtime/Plugins/Windows/x64/LuauPlugin.dll +0 -0
  54. package/Runtime/Plugins/Windows/x64/LuauPlugin.pdb +0 -0
  55. package/Runtime/Plugins/iOS/LuauPluginIos.a +0 -0
  56. package/Runtime/Prefabs/Network.prefab +2 -2
  57. package/Runtime/Scenes/CoreScene.unity +603 -232
  58. package/ThirdParty/Mirror/Core/NetworkClient.cs +5 -1
  59. package/ThirdParty/Mirror/Core/NetworkClient_TimeInterpolation.cs +18 -14
  60. package/ThirdParty/Mirror/Core/NetworkConnection.cs +1 -1
  61. package/ThirdParty/Mirror/Core/NetworkConnectionToClient.cs +14 -11
  62. package/ThirdParty/Mirror/Core/NetworkLoop.cs +1 -1
  63. package/ThirdParty/Mirror/Core/NetworkServer.cs +48 -34
  64. package/ThirdParty/Mirror/Core/NetworkTime.cs +1 -1
  65. package/ThirdParty/Mirror/Core/SnapshotInterpolation/SnapshotInterpolation.cs +54 -35
  66. package/ThirdParty/Mirror/Core/SnapshotInterpolation/SnapshotInterpolationSettings.cs +2 -2
  67. package/package.json +1 -1
  68. package/Runtime/Code/Misc/Vector3Util.cs +0 -23
  69. package/Runtime/Code/Misc/Vector3Util.cs.meta +0 -11
@@ -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>";