Original Post
I am programming on a game with Python and Soya3d. I encountered a obstacle which I did try to solve the last couple of days and I still do not have clue. What I try to do is having a camera which is located on over the main character in a way that is used in RTS games. The following code is what I use: Does anybody use Soya3d and knows or guesses what the values need to be or what I do forget?
camera = soya.TravelingCamera(scene)
traveling = soya.ThirdPersonTraveling(character)
traveling.distance = 15.0
camera.add_traveling(traveling)
camera.zap()
camera.height = 140.0
camera.back = 70.0