Skip to content

Commit 10394a7

Browse files
committed
[BUGFIX] Restoring Gaea TOR Processor
1 parent e5a4eeb commit 10394a7

File tree

19 files changed

+219
-0
lines changed

19 files changed

+219
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
""
2+
Contents.mime Contents.mime
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Automatically generated script
2+
\set noalias = 1
3+
#
4+
# Creation script for gamedev::sop_gaea_tor_processor operator
5+
#
6+
7+
if ( "$arg1" == "" ) then
8+
echo This script is intended as a creation script
9+
exit
10+
endif
11+
12+
# Node $arg1 (gamedev::Sop/sop_gaea_tor_processor)
13+
opexprlanguage -s hscript $arg1
14+
opuserdata -n '___Version___' -v '1.0' $arg1
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"OnCreated/Cursor":{
3+
"type":"intarray",
4+
"value":[8,9]
5+
},
6+
"OnCreated/IsExpr":{
7+
"type":"bool",
8+
"value":false
9+
},
10+
"OnCreated/IsPython":{
11+
"type":"bool",
12+
"value":true
13+
},
14+
"OnCreated/IsScript":{
15+
"type":"bool",
16+
"value":true
17+
},
18+
"OnCreated/Source":{
19+
"type":"string",
20+
"value":""
21+
},
22+
"PythonModule/Cursor":{
23+
"type":"intarray",
24+
"value":[43,1]
25+
},
26+
"PythonModule/IsExpr":{
27+
"type":"bool",
28+
"value":false
29+
},
30+
"PythonModule/IsPython":{
31+
"type":"bool",
32+
"value":true
33+
},
34+
"PythonModule/IsScript":{
35+
"type":"bool",
36+
"value":true
37+
},
38+
"PythonModule/Source":{
39+
"type":"string",
40+
"value":""
41+
}
42+
}

otls/sop_gaea_tor_processor.hda/gamedev_8_8Sop_1sop__gaea__tor__processor/Help

Whitespace-only changes.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"nodeconntype":{
3+
"type":"bool",
4+
"value":false
5+
},
6+
"nodeparmtype":{
7+
"type":"bool",
8+
"value":false
9+
}
10+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
error1
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# track creation usage. For more info, including how to disable this please see
2+
# https://www.sidefx.com/legal/houdini-anonymous-usage-statistics/
3+
4+
try:
5+
import gamedevutils
6+
gamedevutils.send_on_create_analytics(kwargs["node"])
7+
except:
8+
pass
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
""
2+
DialogScript DialogScript
3+
CreateScript CreateScript
4+
TypePropertiesOptions TypePropertiesOptions
5+
Help Help
6+
Tools.shelf Tools.shelf
7+
InternalFileOptions InternalFileOptions
8+
Contents.gz Contents.gz
9+
Version Version
10+
EditableNodes EditableNodes
11+
IconSVG IconSVG
12+
MessageNodes MessageNodes
13+
PythonModule PythonModule
14+
OnCreated OnCreated
15+
ExtraFileOptions ExtraFileOptions
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<shelfDocument>
3+
<!-- This file contains definitions of shelves, toolbars, and tools.
4+
It should not be hand-edited when it is being used by the application.
5+
Note, that two definitions of the same element are not allowed in
6+
a single file. -->
7+
8+
<tool name="$HDA_DEFAULT_TOOL" label="$HDA_LABEL" icon="$HDA_ICON">
9+
<toolMenuContext name="viewer">
10+
<contextNetType>SOP</contextNetType>
11+
</toolMenuContext>
12+
<toolMenuContext name="network">
13+
<contextOpType>$HDA_TABLE_AND_NAME</contextOpType>
14+
</toolMenuContext>
15+
<toolSubmenu>GameDev/Gaea</toolSubmenu>
16+
<script scriptType="python"><![CDATA[import soptoolutils
17+
18+
soptoolutils.genericTool(kwargs, '$HDA_NAME')]]></script>
19+
</tool>
20+
</shelfDocument>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
CheckExternal := 1;
2+
ContentsCompressionType := 1;
3+
ForbidOutsideParms := 1;
4+
GzipContents := 1;
5+
LockContents := 1;
6+
MakeDefault := 1;
7+
ParmsFromVfl := 0;
8+
PrefixDroppedParmLabel := 0;
9+
PrefixDroppedParmName := 0;
10+
SaveCachedCode := 0;
11+
SaveIcon := 1;
12+
SaveSpareParms := 0;
13+
UnlockOnCreate := 0;
14+
UseDSParms := 1;

0 commit comments

Comments
 (0)