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.
- package/Editor/Easy.Airship.Editor.asmdef +2 -1
- 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/Airship/Resources/Scripts/Editor/Airship.Airship.Editor.asmdef +2 -1
- package/Runtime/Code/Airship/Resources/Scripts/MeshCombiner.cs +3 -1
- package/Runtime/Code/Airship/Resources/Scripts/MeshCopy.cs +15 -10
- package/Runtime/Code/AirshipConst.cs +2 -2
- package/Runtime/Code/Bootstrap/ServerBootstrap.cs +1 -1
- package/Runtime/Code/Bundles/Airship.Bundles.asmdef +2 -1
- package/Runtime/Code/CoreUI/Loading/CoreLoadingScreen.cs +4 -0
- package/Runtime/Code/Crc32/Crc32Algorithm.cs +192 -0
- package/Runtime/Code/Crc32/Crc32Algorithm.cs.meta +3 -0
- package/Runtime/Code/Crc32/LICENSE +21 -0
- package/Runtime/Code/Crc32/LICENSE.meta +3 -0
- package/Runtime/Code/Crc32/SafeProxy.cs +76 -0
- package/Runtime/Code/Crc32/SafeProxy.cs.meta +3 -0
- package/Runtime/Code/Crc32.meta +3 -0
- package/Runtime/Code/Luau/Airship.LuauCore.asmdef +1 -0
- package/Runtime/Code/Luau/AirshipComponent.cs +13 -4
- package/Runtime/Code/Luau/AirshipComponentTriggerEvents.cs +20 -0
- package/Runtime/Code/Luau/AirshipComponentTriggerEvents.cs.meta +2 -0
- package/Runtime/Code/Luau/BinaryBlob.cs +100 -6
- package/Runtime/Code/Luau/LuauCompiler.cs +1 -1
- package/Runtime/Code/Luau/LuauCore.cs +15 -29
- package/Runtime/Code/Luau/LuauCoreCallbacks.cs +275 -243
- package/Runtime/Code/Luau/LuauCoreReflection.cs +16 -0
- package/Runtime/Code/Luau/LuauMetadata.cs +4 -1
- package/Runtime/Code/Luau/LuauMetadataPropertySerializer.cs +4 -0
- package/Runtime/Code/Luau/LuauScript.cs +4 -0
- package/Runtime/Code/Luau/ReflectionList.cs +10 -0
- package/Runtime/Code/Luau/ThreadManager.cs +14 -0
- package/Runtime/Code/Luau/TypeReflection.cs +2 -1
- package/Runtime/Code/LuauAPI/AirshipBehaviourHelper.cs +16 -2
- package/Runtime/Code/LuauAPI/EditorPrefsAPI.cs +11 -0
- package/Runtime/Code/LuauAPI/EditorPrefsAPI.cs.meta +3 -0
- package/Runtime/Code/LuauAPI/GameObjectAPI.cs +15 -5
- package/Runtime/Code/LuauAPI/KeyframeAPI.cs +9 -0
- package/Runtime/Code/LuauAPI/KeyframeAPI.cs.meta +3 -0
- package/Runtime/Code/LuauAPI/SplineContainerAPI.cs +9 -0
- package/Runtime/Code/LuauAPI/SplineContainerAPI.cs.meta +2 -0
- package/Runtime/Code/Managers/CanvasDistanceManager.cs +49 -0
- package/Runtime/Code/Managers/CanvasDistanceManager.cs.meta +3 -0
- package/Runtime/Code/Misc/CanvasDistanceCondition.cs +15 -15
- package/Runtime/Code/Network/AirshipNetworkManager.cs +9 -1
- package/Runtime/Code/Network/Simulation/AirshipNetworkedObject.cs +9 -9
- package/Runtime/Code/Network/Simulation/AirshipSimulationManager.cs +122 -80
- package/Runtime/Code/Network/Simulation/History.cs +78 -60
- package/Runtime/Code/Network/Simulation/ObserveableHistory.cs +242 -0
- package/Runtime/Code/Network/Simulation/ObserveableHistory.cs.meta +3 -0
- package/Runtime/Code/Network/StateSystem/AirshipNetworkedStateManager.cs +439 -278
- package/Runtime/Code/Network/StateSystem/Implementations/TestMovementSystem/TestMovement.cs +10 -9
- package/Runtime/Code/Network/StateSystem/Implementations/TestMovementSystem/TestMovementDiff.cs +7 -0
- package/Runtime/Code/Network/StateSystem/Implementations/TestMovementSystem/TestMovementDiff.cs.meta +3 -0
- package/Runtime/Code/Network/StateSystem/Implementations/TestMovementSystem/TestMovementState.cs +4 -4
- package/Runtime/Code/Network/StateSystem/Implementations/TestMovementSystem/TestNetworkedStateManager.cs +26 -7
- package/Runtime/Code/Network/StateSystem/NetworkedStateSystem.cs +9 -9
- package/Runtime/Code/Network/StateSystem/Structures/InputCommand.cs +5 -4
- package/Runtime/Code/Network/StateSystem/Structures/StateDiff.cs +24 -0
- package/Runtime/Code/Network/StateSystem/Structures/StateDiff.cs.meta +3 -0
- package/Runtime/Code/Network/StateSystem/Structures/StateSnapshot.cs +29 -3
- package/Runtime/Code/Player/Accessories/AccessoryComponent.cs +7 -4
- package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterMovement.cs +84 -57
- package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterNetworkedStateManager.cs +30 -10
- package/Runtime/Code/Player/Character/MovementSystems/Character/CharacterPhysics.cs +3 -1
- package/Runtime/Code/Player/Character/MovementSystems/Character/Structures/CharacterInputData.cs +50 -1
- package/Runtime/Code/Player/Character/MovementSystems/Character/Structures/CharacterSnapshotData.cs +243 -54
- package/Runtime/Code/Player/Character/MovementSystems/Character/Structures/CharacterStateDiff.cs +31 -0
- package/Runtime/Code/Player/Character/MovementSystems/Character/Structures/CharacterStateDiff.cs.meta +3 -0
- package/Runtime/Code/PoolManager/Airship.PoolManager.asmdef +2 -1
- package/Runtime/Code/PoolManager/PoolManager.cs +3 -3
- package/Runtime/Code/TSCodeGen/Editor/CsToTs/CsToTs.asmdef +3 -1
- package/Runtime/Code/TSCodeGen/TypeGenerator.cs +7 -0
- package/Runtime/Code/Transfer/TransferManager.cs +9 -0
- package/Runtime/Code/Util/BitUtil.cs +22 -0
- package/Runtime/Code/Util/BitUtil.cs.meta +3 -0
- package/Runtime/Code/Util/NetworkSerializationUtil.cs +40 -0
- package/Runtime/Code/Util/NetworkSerializationUtil.cs.meta +3 -0
- package/Runtime/Code/VoxelWorld/Editor/Airship.VoxelWorld.Editor.asmdef +2 -1
- 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 +3 -3
- package/Runtime/Scenes/CoreScene.unity +680 -286
- package/ThirdParty/Graphy - Ultimate Stats Monitor/Editor/Tayx.Graphy.Editor.asmdef +4 -1
- package/ThirdParty/Graphy - Ultimate Stats Monitor/Runtime/Tayx.Graphy.asmdef +2 -1
- package/ThirdParty/Mirror/Components/NetworkStatistics.cs +12 -7
- 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/NetworkManager.cs +3 -0
- 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
|
@@ -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>";
|