Skip to content

Commit 0fedb39

Browse files
committed
[BUGFIX] *CSV Exporter* will now grab the rendernode from a given geometry node if a user specified a geometry node instead of a sop.
1 parent 45e5963 commit 0fedb39

File tree

5 files changed

+19
-16
lines changed

5 files changed

+19
-16
lines changed

otls/rop_csv_exporter.hda/INDEX__SECTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ Inputs: 0 to 0
1010
Subnet: true
1111
Python: false
1212
Empty: false
13-
Modified: Wed Jan 30 17:01:03 2019
13+
Modified: Fri Jul 5 12:40:32 2019
1414

otls/rop_csv_exporter.hda/gamedev_8_8Driver_1rop__csv__exporter/Contents.dir/Contents.mime

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Content-Disposition: attachment; filename="hdaroot.def"
1919
Content-Type: text/plain
2020

2121
comment ""
22-
position -57.0127 -12.2223
22+
position -2.51176 1.52353
2323
connectornextid 0
24-
flags = lock off model off template off footprint off xray off bypass off display on render on highlight off unload off savedata off compress on colordefault on exposed on
24+
flags = lock off model off template off footprint off xray off bypass off display off render off highlight off unload off savedata off compress on colordefault on exposed on
2525
outputsNamed3
2626
{
2727
}
@@ -33,9 +33,9 @@ inputs
3333
}
3434
stat
3535
{
36-
create 1548896109
37-
modify 1548896465
38-
author Paul_Ambrosiussen@LAPTOP-P8R7FBPF
36+
create 1527885270
37+
modify 1562355633
38+
author MAINGEAR@DESKTOP-P98C1VA
3939
access 0777
4040
}
4141
color UT_Color RGB 0.8 0.8 0.8
@@ -147,7 +147,7 @@ Content-Type: text/plain
147147
{
148148
"___Version___":{
149149
"type":"string",
150-
"value":"17.0.456"
150+
"value":"17.5.293"
151151
}
152152
}
153153

otls/rop_csv_exporter.hda/gamedev_8_8Driver_1rop__csv__exporter/ExtraFileOptions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
},
2222
"PythonModule/Cursor":{
2323
"type":"intarray",
24-
"value":[77,40]
24+
"value":[80,40]
2525
},
2626
"PythonModule/IsExpr":{
2727
"type":"bool",

otls/rop_csv_exporter.hda/gamedev_8_8Driver_1rop__csv__exporter/PythonModule

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ def export(node):
2424

2525

2626
export_node = node.node(node_name)
27+
28+
if export_node.type().name() == "geo":
29+
export_node = export_node.renderNode()
2730
geo = export_node.geometry()
2831

2932
# Determine the order & filter of exporting process
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
SaveSpareParms := 0;
21
CheckExternal := 1;
3-
SaveIcon := 1;
4-
GzipContents := 1;
52
ContentsCompressionType := 1;
6-
UnlockOnCreate := 0;
7-
SaveCachedCode := 0;
3+
ForbidOutsideParms := 1;
4+
GzipContents := 1;
85
LockContents := 1;
96
MakeDefault := 1;
10-
UseDSParms := 1;
11-
ForbidOutsideParms := 1;
7+
ParmsFromVfl := 0;
128
PrefixDroppedParmLabel := 0;
139
PrefixDroppedParmName := 0;
14-
ParmsFromVfl := 0;
10+
SaveCachedCode := 0;
11+
SaveIcon := 1;
12+
SaveSpareParms := 0;
13+
UnlockOnCreate := 0;
14+
UseDSParms := 1;

0 commit comments

Comments
 (0)