mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Light source now stays in place when rotating a model in the viewer.
This commit is contained in:
parent
7e5dea8e25
commit
1c44ce4620
@ -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
|
||||||
|
@ -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
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user