Less stars

This commit is contained in:
retoor 2025-07-24 13:48:22 +02:00
parent 6b4709d011
commit 4266ac1f12

View File

@ -12,7 +12,7 @@ function showTerm(options){
class StarField {
constructor({ count = 100, container = document.body } = {}) {
constructor({ count = 50, container = document.body } = {}) {
this.container = container;
this.starCount = count;
this.stars = [];
@ -567,7 +567,7 @@ const count = Array.from(messages).filter(el => el.textContent.trim() === text).
const starField = new StarField({starCount: 100});
const starField = new StarField({starCount: 50});
app.starField = starField;
class DemoSequence {