-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnipptes_001.ms
65 lines (40 loc) · 903 Bytes
/
snipptes_001.ms
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
-- scenewidde corona proxy display as box
prxy = for i in geometry where(classof i ==CProxy) collect i
for p in prxy do (
p.previzType = 0
p.cacheInRam=False
)
----
// all selection sets to one selection set
--selectionsets.count
--selectionsets[3].count
tempss = #()
for i=1 to selectionsets.count do (
for s=1 to selectionsets[i].count do (
append tempss selectionsets[i][s]
)
)
selectionsets["all_objects"] = tempss
for sset in selectionsets do (
--print sset
group sset name:sset.name
)
----
----
// group selection set
for sset in selectionsets do (
--print sset
group sset name:sset.name
)
----
----
--selection.pivot = [0,0,0]
--sel = selection as array
grps = for i in Helpers where (classof i == Dummy ) collect i
for g in grps do (
g.pos.x = 0
g.pos.y = 0
g.pivot = [0,0,0]
)
----
----