[orx-camera] remove verbosity

This commit is contained in:
Edwin Jakobs
2020-07-26 12:42:52 +02:00
parent fe979f5a75
commit 6c4d130c85

View File

@@ -20,7 +20,7 @@ class Orbital : Extension {
var keySpeed = 1.0
var projectionType = ProjectionType.PERSPECTIVE
val camera by lazy { println("creating camera $projectionType"); OrbitalCamera(eye, lookAt, fov, near, far, projectionType) }
val camera by lazy { OrbitalCamera(eye, lookAt, fov, near, far, projectionType) }
val controls by lazy { OrbitalControls(camera, userInteraction, keySpeed) }
override fun setup(program: Program) {