Skip to content

Commit 85f8a8b

Browse files
committed
Test issues
1 parent 69a5271 commit 85f8a8b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

examples/text/effect.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
import moderngl
22
from demosys.effects import effect
33
from demosys.text import TextWriter2D
4-
from pyrr import matrix44
4+
# from pyrr import matrix44
55

66

77
class TextEffect(effect.Effect):
88

99
def __init__(self):
1010
super().__init__()
11-
self.writer = TextWriter2D((10, 1),
11+
self.writer = TextWriter2D(
12+
(10, 1),
1213
text="Hello world! Hello world! Hello world!")
1314

1415
def post_load(self):

0 commit comments

Comments
 (0)