Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CakeBuild/CakeBuild.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<RunWorkingDirectory>$(MSBuildProjectDirectory)</RunWorkingDirectory>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion Verticality/Moves/Climb/PModuleGrab.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public override bool Applicable(Entity entity, EntityPos pos, EntityControls con
public override void DoApply(float dt, Entity entity, EntityPos pos, EntityControls controls)
{
bool grabYLowered = false;
Vec3d walkVectorRelativeToGrabFace = controls.WalkVector.RotatedCopy(grab.grabPos.Face.HorizontalAngleIndex * -GameMath.PIHALF);
Vec3d walkVectorRelativeToGrabFace = controls.WalkVector.RotatedCopy(grab.grabPos.Face.HorizontalAngleIndex * GameMath.PIHALF);

controls.IsClimbing = true;

Expand Down
2 changes: 1 addition & 1 deletion Verticality/Verticality.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>bin\$(Configuration)\Mods\mod</OutputPath>
</PropertyGroup>
Expand Down