Welcome to mirror list, hosted at ThFree Co, Russian Federation.

KX_VehicleWrapper.py « PyDoc « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 087aa167475a6ad76043c9b1e501e8c6bfb3550a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
class KX_VehicleWrapper: # (PyObjectPlus)
	"""
	KX_VehicleWrapper
	
	All placeholders have a __ prefix
	"""
	
	def addWheel(wheel, attachPos, attachDir, axleDir, suspensionRestLength, wheelRadius, hasSteering):
		
		"""
		TODO - Description
		
		@param wheel: The object to use as a wheel.
		@type wheel: L{KX_GameObject<KX_GameObject.KX_GameObject>} or a KX_GameObject name
		@param attachPos: The position that this wheel will attach to.
		@type attachPos: vector of 3 floats
		@param attachDir: The direction this wheel points.
		@type attachDir: vector of 3 floats
		@param axleDir: The direction of this wheels axle.
		@type axleDir: vector of 3 floats
		@param suspensionRestLength: TODO - Description
		@type suspensionRestLength: float
		@param wheelRadius: The size of the wheel.
		@type wheelRadius: float
		"""

	def __applyBraking(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""
	def __applyEngineForce(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""
	def __getConstraintId(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""
	def __getConstraintType(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""
	def __getNumWheels(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""
	def __getWheelOrientationQuaternion(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""
	def __getWheelPosition(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""
	def __getWheelRotation(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""
	def __setRollInfluence(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""
	def __setSteeringValue(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""
	def __setSuspensionCompression(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""
	def __setSuspensionDamping(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""
	def __setSuspensionStiffness(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""
	def __setTyreFriction(val):
		"""
		TODO - Description
		
		@param val: the starting frame of the animation
		@type val: float
		
		@rtype: integer
		@return: TODO Description
		"""