X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=tabakrolletjie%2Fscenes%2Fhelp.py;h=648a5812a07465814cc8a85c77643e4ef1c8c965;hb=da0dc03472ab119b77a4706c6a4d3d581e37b50d;hp=ca1abd21aa840722a2bbf230037fe90c10fdeec5;hpb=7217a7ce801db0571b478aa73471134891b6058c;p=tabakrolletjie.git diff --git a/tabakrolletjie/scenes/help.py b/tabakrolletjie/scenes/help.py index ca1abd2..648a581 100644 --- a/tabakrolletjie/scenes/help.py +++ b/tabakrolletjie/scenes/help.py @@ -99,7 +99,12 @@ class HelpScene(BaseScene): "This is a pulsating lamp. Its light intensity is variable."), transform=Multiply(colour=COLOURS["cyan"])), HelpItem(("48", "spotlight.png"), ( - "This is a spotlight. Unlike a lamp, it has a rotating beam." + "This is a spotlight. Unlike a lamp, it has a beam which is" + " pointed in a particular direction. To change the direction of" + " a beam, right-click near the spotlight and drag. You can only" + " do this during the day. Some spotlights rotate."), + transform=Multiply(colour=COLOURS["red"])), + HelpItem(("48", "lamp.png"), ( " Lights can be multicoloured, like this one. You can toggle" " lights on and off at night to conserve power, and toggle the" " colour of multicoloured lights."), @@ -178,6 +183,9 @@ class HelpScene(BaseScene): height = 50 x_offset = SCREEN_SIZE[0] / 2 + for tool in self._tools: + tool.render(surface) + def event(self, ev, gamestate): if ev.type == pgl.KEYDOWN: if ev.key in (pgl.K_q, pgl.K_ESCAPE):