(text)
| 495 | |
| 496 | class TextLayer extends MoveableLayer { |
| 497 | constructor(text) { |
| 498 | let f = { |
| 499 | name: text |
| 500 | }; |
| 501 | super(f); |
| 502 | this.color = "#ffffff"; |
| 503 | this.shadow = true; |
| 504 | this.ready = true; |
| 505 | } |
| 506 | |
| 507 | init(player, preview) { |
| 508 | super.init(player, preview); |
nothing calls this directly
no outgoing calls
no test coverage detected