Hi, I'm new to both blender and python, but I've been sifting through page after page of forums here and across the internet and I can't get this solved. I'm using blender 2.64 - 32bit on windows 7.
All I'm trying to do is this:
| Code: |
import rasterizer as r
r.showmouse(1)
|
I add a sensor (always) and a controller (my python script). I hit P in game engine and it runs... but no mouse cursor. The console error reads "import error: no module named rasterizer".
Why? Where the hell is it? lol
At startup, blender console says it's using a "bundled" python? I've tried using python 3.3 and python 2.6 using environment variable paths, but I got a runtime error every time so I just deleted the paths and I'm back at square one. I'm sure it's just some stupid thing that I'm missing, but I'm not seeing it. Please help!! Dx
Nevermind, I found the correct documentation lol. I guess writing out the problem gave me some perspective.
| Code: |
import bge
bge.render.showMouse(1)
|