Add healing effect resource and integrate into game systems

This commit is contained in:
2025-10-29 02:27:50 +01:00
parent d046130f17
commit 853378c9c6
6 changed files with 18 additions and 5 deletions

View File

@@ -42,7 +42,9 @@ public class GodotWorldQuery(GamePresenter ownerNode) : IWorldQuery
return new HitResult
{
DidHit = true,
HitEntity = hitEntity
HitEntity = hitEntity,
Position = result["position"].AsVector3().ToGameCore(),
Normal = result["normal"].AsVector3().ToGameCore()
};
}
}