gg.easy.airship 0.1.2149 → 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.
- package/Editor/Toolbar/EditorToolbar.cs +7 -0
- package/Editor/TypescriptCompiler~/utsc.js +113 -113
- package/Editor/TypescriptServices/Compiler/TypescriptCompilationService.cs +6 -4
- package/Editor/TypescriptServices/Editor/TypescriptLogService.cs +4 -0
- package/Editor/TypescriptServices/Editor/TypescriptOptions.cs +1 -0
- package/Editor/TypescriptServices/Editor/TypescriptServicesStatusWindow.cs +3 -2
- package/Editor/TypescriptServices/Editor/TypescriptStatusbar.cs +1 -1
- package/Editor/TypescriptServices/TypescriptServices.cs +62 -21
- package/Runtime/Code/CoreUI/Loading/CoreLoadingScreen.cs +4 -0
- package/Runtime/Code/Luau/LuauCore.cs +15 -29
- package/Runtime/Code/Luau/LuauCoreCallbacks.cs +273 -243
- package/Runtime/Code/Luau/LuauCoreReflection.cs +16 -0
- package/Runtime/Code/Luau/LuauMetadataPropertySerializer.cs +4 -0
- package/Runtime/Code/Luau/ReflectionList.cs +9 -0
- package/Runtime/Code/Luau/ThreadManager.cs +14 -0
- package/Runtime/Code/Luau/TypeReflection.cs +2 -1
- package/Runtime/Code/LuauAPI/EditorPrefsAPI.cs +11 -0
- package/Runtime/Code/LuauAPI/EditorPrefsAPI.cs.meta +3 -0
- package/Runtime/Code/LuauAPI/KeyframeAPI.cs +9 -0
- package/Runtime/Code/LuauAPI/KeyframeAPI.cs.meta +3 -0
- package/Runtime/Code/Network/AirshipNetworkManager.cs +9 -1
- package/Runtime/Code/Network/Simulation/AirshipNetworkedObject.cs +1 -1
- package/Runtime/Code/Network/Simulation/AirshipSimulationManager.cs +57 -14
- package/Runtime/Code/Network/Simulation/History.cs +8 -6
- package/Runtime/Code/Network/Simulation/ObserveableHistory.cs +7 -6
- package/Runtime/Code/Network/StateSystem/AirshipNetworkedStateManager.cs +197 -143
- package/Runtime/Code/Network/StateSystem/NetworkedStateSystem.cs +1 -1
- package/Runtime/Code/Network/StateSystem/Structures/InputCommand.cs +1 -0
- package/Runtime/Code/Network/StateSystem/Structures/StateSnapshot.cs +1 -1
- package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterMovement.cs +68 -51
- package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterNetworkedStateManager.cs +1 -0
- package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterPhysics.cs +3 -1
- package/Runtime/Code/Player/Character/MovementSystems/Character/Structures/CharacterSnapshotData.cs +2 -2
- package/Runtime/Code/PoolManager/PoolManager.cs +2 -2
- package/Runtime/Code/TSCodeGen/TypeGenerator.cs +3 -0
- package/Runtime/Code/Transfer/TransferManager.cs +9 -0
- package/Runtime/Code/VoxelWorld/Editor/VoxelBuilderEditorWindow.cs +16 -5
- package/Runtime/Code/VoxelWorld/Editor/VoxelWorldEditor.cs +19 -11
- package/Runtime/Code/VoxelWorld/Resources/SelectIcon.png +0 -0
- package/Runtime/Code/VoxelWorld/Resources/VoxelIcon.png +0 -0
- package/Runtime/Code/VoxelWorld/Resources/VoxelWorldAtlasURP.shadergraph +3151 -856
- package/Runtime/Code/VoxelWorld/Resources/VoxelWorldMatURP.mat +6 -0
- package/Runtime/Code/VoxelWorld/TexturePacker.cs +34 -0
- package/Runtime/Code/VoxelWorld/VoxelBlocks.cs +56 -408
- package/Runtime/Code/VoxelWorld/VoxelMeshProcessor.cs +309 -102
- package/Runtime/Code/VoxelWorld/VoxelWorld.cs +130 -54
- package/Runtime/Code/VoxelWorld/VoxelWorldChunk.cs +158 -140
- package/Runtime/Code/VoxelWorld/VoxelWorldCollision.cs +43 -7
- package/Runtime/Code/VoxelWorld/WorldSaveFile.cs +9 -8
- package/Runtime/Plugins/Android/libLuauPlugin.so +0 -0
- package/Runtime/Plugins/Linux/libLuauPlugin.so +0 -0
- package/Runtime/Plugins/Mac/LuauPlugin.bundle/Contents/MacOS/LuauPlugin +0 -0
- package/Runtime/Plugins/Windows/x64/LuauPlugin.dll +0 -0
- package/Runtime/Plugins/Windows/x64/LuauPlugin.pdb +0 -0
- package/Runtime/Plugins/iOS/LuauPluginIos.a +0 -0
- package/Runtime/Prefabs/Network.prefab +2 -2
- package/Runtime/Scenes/CoreScene.unity +603 -232
- package/ThirdParty/Mirror/Core/NetworkClient.cs +5 -1
- package/ThirdParty/Mirror/Core/NetworkClient_TimeInterpolation.cs +18 -14
- package/ThirdParty/Mirror/Core/NetworkConnection.cs +1 -1
- package/ThirdParty/Mirror/Core/NetworkConnectionToClient.cs +14 -11
- package/ThirdParty/Mirror/Core/NetworkLoop.cs +1 -1
- package/ThirdParty/Mirror/Core/NetworkServer.cs +48 -34
- package/ThirdParty/Mirror/Core/NetworkTime.cs +1 -1
- package/ThirdParty/Mirror/Core/SnapshotInterpolation/SnapshotInterpolation.cs +54 -35
- package/ThirdParty/Mirror/Core/SnapshotInterpolation/SnapshotInterpolationSettings.cs +2 -2
- package/package.json +1 -1
- package/Runtime/Code/Misc/Vector3Util.cs +0 -23
- 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>";
|