diff --git a/extracommands/ExtraCommands.csproj b/extracommands/ExtraCommands.csproj index 8570e06..ac4b16f 100644 --- a/extracommands/ExtraCommands.csproj +++ b/extracommands/ExtraCommands.csproj @@ -1,7 +1,7 @@  - net48 + net472 true @@ -10,92 +10,98 @@ + + ..\ref\Plugins\GamecraftModdingAPI.dll + - ..\ref\CommandLine.dll + ..\ref\Gamecraft_Data\Managed\CommandLine.dll - ..\ref\Facepunch.Steamworks.Win64.dll + ..\ref\Gamecraft_Data\Managed\Facepunch.Steamworks.Win64.dll - ..\ref\FullGame.dll + ..\ref\Gamecraft_Data\Managed\FullGame.dll - ..\IllusionPlugin.dll + ..\ref\Gamecraft_Data\Managed\IllusionPlugin.dll - ..\ref\RobocraftX.Character.dll + ..\ref\Gamecraft_Data\Managed\RobocraftX.Character.dll - ..\ref\RobocraftX.Common.dll + ..\ref\Gamecraft_Data\Managed\RobocraftX.Common.dll - ..\ref\RobocraftX.Blocks.dll + ..\ref\Gamecraft_Data\Managed\RobocraftX.Blocks.dll + + + ..\ref\Gamecraft_Data\Managed\RobocraftX.Blocks.Ghost.dll - ..\ref\RobocraftX.Character.dll + ..\ref\Gamecraft_Data\Managed\RobocraftX.Character.dll - ..\ref\RobocraftX.Input.dll + ..\ref\Gamecraft_Data\Managed\RobocraftX.Input.dll - ..\ref\RobocraftX.MainGame.dll + ..\ref\Gamecraft_Data\Managed\RobocraftX.MainGame.dll - ..\ref\RobocraftX.Multiplayer.dll + ..\ref\Gamecraft_Data\Managed\RobocraftX.Multiplayer.dll - ..\ref\RobocraftX.Multiplayer.NetworkEntityStream.dll + ..\ref\Gamecraft_Data\Managed\RobocraftX.Multiplayer.NetworkEntityStream.dll - ..\ref\RobocraftX.MultiplayerInput.dll + ..\ref\Gamecraft_Data\Managed\RobocraftX.MultiplayerInput.dll - ..\ref\RobocraftX.Physics.dll + ..\ref\Gamecraft_Data\Managed\RobocraftX.Physics.dll - ..\ref\RobocraftX.StateSync.dll + ..\ref\Gamecraft_Data\Managed\RobocraftX.StateSync.dll - ..\ref\Svelto.Common.dll + ..\ref\Gamecraft_Data\Managed\Svelto.Common.dll - ..\ref\Svelto.ECS.dll + ..\ref\Gamecraft_Data\Managed\Svelto.ECS.dll - ..\ref\Svelto.Tasks.dll + ..\ref\Gamecraft_Data\Managed\Svelto.Tasks.dll - ..\ref\Unity.Entities.dll + ..\ref\Gamecraft_Data\Managed\Unity.Entities.dll - ..\ref\Unity.Entities.Hybrid.dll + ..\ref\Gamecraft_Data\Managed\Unity.Entities.Hybrid.dll - ..\ref\Unity.Entities.Properties.dll + ..\ref\Gamecraft_Data\Managed\Unity.Entities.Properties.dll - ..\ref\Unity.Entities.StaticTypeRegistry.dll + ..\ref\Gamecraft_Data\Managed\Unity.Entities.StaticTypeRegistry.dll - ..\ref\Unity.Mathematics.dll + ..\ref\Gamecraft_Data\Managed\Unity.Mathematics.dll - ..\ref\Unity.Mathematics.Extensions.dll + ..\ref\Gamecraft_Data\Managed\Unity.Mathematics.Extensions.dll - ..\ref\Unity.Mathematics.Extensions.Hybrid.dll + ..\ref\Gamecraft_Data\Managed\Unity.Mathematics.Extensions.Hybrid.dll - ..\ref\Unity.Transforms.dll + ..\ref\Gamecraft_Data\Managed\Unity.Transforms.dll - ..\ref\UnityEngine.dll + ..\ref\Gamecraft_Data\Managed\UnityEngine.dll - ..\ref\UnityEngine.CoreModule.dll + ..\ref\Gamecraft_Data\Managed\UnityEngine.CoreModule.dll - ..\ref\uREPL.dll + ..\ref\Gamecraft_Data\Managed\uREPL.dll diff --git a/extracommands/MoveBlocksCommandEngine.cs b/extracommands/MoveBlocksCommandEngine.cs index eb42269..d5e2c4b 100644 --- a/extracommands/MoveBlocksCommandEngine.cs +++ b/extracommands/MoveBlocksCommandEngine.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using RobocraftX.Multiplayer; using RobocraftX.Common; using RobocraftX.Blocks; +using RobocraftX.Blocks.Ghost; using Svelto.ECS; using Svelto.ECS.EntityStructs; using Unity.Entities; @@ -13,6 +14,7 @@ using RobocraftX.SimulationModeState; using RobocraftX.UECS; using Unity.Transforms; using Unity.Mathematics; +using UnityEngine; using GamecraftModdingAPI.Blocks; using GamecraftModdingAPI.Commands;