
cone_angle_inner
- gets/sets the angle of the inner cone.
- Sound Actuator name: Cone Inner Angle
- float number
Range:
- 0.00 to 360.00
Loop Bidirectional:
- Plays the sound file from start to finish. Then finish to start. Over and over.
- Positive Pulse: Starts playing the sound file from the beginning.
- Negative pulse: Keeps playing the sound file until it reaches the end, then stops playing.

Sample Code

################ get the angle of the inner cone
# import bge module
import bge
# get the controller
cont = bge.logic.getCurrentController()
# get the actuator attached to the controller
# my actuator is named Song
act = cont.actuators["Song"]
# get the angle of the inner cone
angle = act.cone_angle_inner
Sample Code

################ Set the angle of the inner cone
# import bge module
import bge
# get the controller
cont = bge.logic.getCurrentController()
# get the actuator attached to the controller
# my actuator is named Song
act = cont.actuators["Song"]
# set the angle of the inner cone to 180
act.cone_angle_inner = 180.00