Skip to content

Commit

Permalink
Merge with main
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroHG committed Aug 20, 2024
2 parents 8416a09 + 5a75cd2 commit 5b1b100
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions unity/Assets/Scripts/FpinAgentController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -899,15 +899,16 @@ spawnAssetActionFinished.actionReturn as ObjectSphereBounds
}
};
} else {
return new ActionFinished() {
return new ActionFinished()
{
// TODO: change to a proper class once metadata return is defined
actionReturn = new Dictionary<string, object>()
actionReturn: new Dictionary<string, object>()
{
{ "BoxBounds", this.BoxBounds },
{ "cameraNearPlane", m_Camera.nearClipPlane },
{ "cameraFarPlane", m_Camera.farClipPlane }
}
};
);
}
}

Expand Down

0 comments on commit 5b1b100

Please sign in to comment.