mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Two small bugfixes.
This commit is contained in:
parent
f06d6d22e8
commit
27fdefe74a
@ -48,6 +48,7 @@ export class Renderer {
|
|||||||
this.renderer.setSize(width, height);
|
this.renderer.setSize(width, height);
|
||||||
this.camera.aspect = width / height;
|
this.camera.aspect = width / height;
|
||||||
this.camera.updateProjectionMatrix();
|
this.camera.updateProjectionMatrix();
|
||||||
|
this.schedule_render();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected schedule_render = () => {
|
protected schedule_render = () => {
|
||||||
|
@ -5,12 +5,13 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
overflow: auto;
|
overflow-y: scroll;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
|
|
||||||
& > li {
|
& > li {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: 2px 5px;
|
padding: 2px 5px;
|
||||||
|
white-space: nowrap;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: lighten(@primary-color, 30%);
|
color: lighten(@primary-color, 30%);
|
||||||
|
Loading…
Reference in New Issue
Block a user