Light source now stays in place when rotating a model in the viewer.

This commit is contained in:
Daan Vanden Bosch 2021-03-26 14:56:09 +01:00
parent 7e5dea8e25
commit 1c44ce4620
3 changed files with 6 additions and 1 deletions

View File

@ -13,7 +13,8 @@ open class RenderContext(
groundColor = 0x505050, groundColor = 0x505050,
intensity = 1.0 intensity = 1.0
) )
private val lightHolder = Group().add(light)
val lightHolder = Group().add(light)
var width: Int = 0 var width: Int = 0
var height: Int = 0 var height: Int = 0

View File

@ -119,6 +119,8 @@ external class Quaternion(
var z: Double var z: Double
var w: Double var w: Double
fun copy(q: Quaternion): Quaternion
fun setFromEuler(euler: Euler): Quaternion fun setFromEuler(euler: Euler): Quaternion
/** /**

View File

@ -52,6 +52,8 @@ class MeshRenderer(
override fun render() { override fun render() {
animation?.mixer?.update(clock.getDelta()) animation?.mixer?.update(clock.getDelta())
context.lightHolder.quaternion.copy(context.camera.quaternion)
super.render() super.render()
animation?.let { animation?.let {