Added world pointer to PickData

This commit is contained in:
viktorljung
2016-01-14 15:32:41 +01:00
parent 96371a08c8
commit 143648860b
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -144,6 +144,7 @@ PickData PickingPass::Pick(glm::vec2 screenCoord)
pickData.Entity = pickInfo.Entity;
pickData.Camera = pickInfo.Camera;
pickData.World = pickInfo.World;
return pickData;
}