source: cpp/frams/model/defassign-f0-SDK.h @ 952

Last change on this file since 952 was 952, checked in by Maciej Komosinski, 4 years ago

Added new receptors (Gp:"gyroscope" on a Part, Tp:Touch-proximity and Tc:Touch-contact) and improved existing ones (T, G)

  • Property svn:eol-style set to native
File size: 1.1 KB
RevLine 
[286]1// This file is a part of Framsticks SDK.  http://www.framsticks.com/
[915]2// Copyright (C) 1999-2020  Maciej Komosinski and Szymon Ulatowski.
[286]3// See LICENSE.txt for details.
[109]4
5
6
7
[121]8
[109]9void Part::defassign()
10{
11shape=0;
12size=1.0;
13scale.x=1.0;
14scale.y=1.0;
15scale.z=1.0;
[270]16hollow=0;
[109]17density=1.0;
18friction=0.4;
19ingest=0.25;
20assim=0.25;
21vis_style="part";
22vsize=0.2;
[507]23vcolor.x=1.0;
24vcolor.y=1.0;
25vcolor.z=1.0;
[109]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
[932]60
[934]61
62
[952]63
64
65
[934]66void Part_MinMaxDef::defassign()
67{
[945]68volume=4.18879;
[934]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
[952]106
107
108
[109]109void Joint::defassign()
110{
111p1_refno=-1;
112p2_refno=-1;
113d.x=0;
114d.y=0;
115d.z=0;
116shape=0;
[915]117hinge_pos.x=0;
118hinge_pos.y=0;
119hinge_pos.z=0;
120hinge_rot.x=0;
121hinge_rot.y=0;
122hinge_rot.z=0;
123hinge_limit_x[0]=-1.5708;
124hinge_limit_x[1]=1.5708;
125hinge_limit_y[0]=-1.5708;
126hinge_limit_y[1]=1.5708;
[109]127stif=1.0;
128rotstif=1.0;
129stamina=0.25;
130vis_style="joint";
[507]131vcolor.x=1.0;
132vcolor.y=1.0;
133vcolor.z=1.0;
[109]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
167
168
169
[932]170
[934]171
172
[952]173
174
175
[109]176void Neuro::defassign()
177{
178part_refno=-1;
179joint_refno=-1;
180
181vis_style="neuro";
182}
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
[932]216
[934]217
218
[952]219
220
221
[109]222void NeuroConn::defassign()
223{
224n1_refno=-1;
225n2_refno=-1;
226weight=1.0;
227}
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
[932]247
[952]248
249
250
Note: See TracBrowser for help on using the repository browser.