Point & Click Turning Bug!

As russ told you above: self.reduceH is a virable
Func( … ) needs a callable object
I guess you should use Func( self.reducePlayerH ) instead
Just for the future:

self.playerMovement = Sequence(playerTurn, Func(self.reducedH), playerMove)
File "C:\Panda3D-1.0.5\direct\src\interval\FunctionInterval.py", line 275, in
__init__
assert(callable(function)) 

assert is a functions that checks a logical expression.
You see there is something that needs to be a function but is not a function
Then look at the line bove. There you can see the Func( … ) and then try to find whats the mistake
Hope this helps
Martin