idk why there are some un-commit work, but i commit them now
This commit is contained in:
parent
a27b87af79
commit
656db23902
|
@ -11,9 +11,9 @@
|
||||||
| pLocal +--------------> |
|
| pLocal +--------------> |
|
||||||
+--------------+ | |
|
+--------------+ | |
|
||||||
| pIn (bb/oper) |
|
| pIn (bb/oper) |
|
||||||
+--------------+ | |
|
+----------------+ | |
|
||||||
| pIn (bb) +--------------> / |
|
| pIn (bb/oper) +------------> / |
|
||||||
+--------------+ | |
|
+----------------+ | |
|
||||||
| pTarget (bb) |
|
| pTarget (bb) |
|
||||||
+----------------+ | |
|
+----------------+ | |
|
||||||
| pOut (bb/oper) +------------> |
|
| pOut (bb/oper) +------------> |
|
||||||
|
@ -22,9 +22,9 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
+------------------+ +--------------+
|
+------------------+ +-----------------+
|
||||||
| +-----------> pOut (bb) |
|
| +-----------> pOut (bb/oper) |
|
||||||
| | +--------------+
|
| | +-----------------+
|
||||||
| pOut (bb/oper) |
|
| pOut (bb/oper) |
|
||||||
| | +--------------+
|
| | +--------------+
|
||||||
| +-----------> pLocal |
|
| +-----------> pLocal |
|
||||||
|
|
|
@ -82,7 +82,7 @@ class BlocksFactory(object):
|
||||||
# read datas
|
# read datas
|
||||||
for (output_obj, output_type, output_is_bb, ) in envir.m_Cursor.fetchall():
|
for (output_obj, output_type, output_is_bb, ) in envir.m_Cursor.fetchall():
|
||||||
# check dup
|
# check dup
|
||||||
if output_obj in envir.m_WalkedOper:
|
if output_obj in envir.m_WalkedOper or output_obj not in self.__AllOper:
|
||||||
continue
|
continue
|
||||||
envir.m_WalkedOper.add(output_obj)
|
envir.m_WalkedOper.add(output_obj)
|
||||||
|
|
||||||
|
|
|
@ -138,7 +138,7 @@ namespace SSMaterializer {
|
||||||
{
|
{
|
||||||
//pOper only have pIn.
|
//pOper only have pIn.
|
||||||
mDb->mDbHelper.script_pLink.input_type = DataStruct::pLinkInputOutputType_PIN;
|
mDb->mDbHelper.script_pLink.input_type = DataStruct::pLinkInputOutputType_PIN;
|
||||||
mDb->mDbHelper.script_pLink.input_is_bb = TRUE;
|
mDb->mDbHelper.script_pLink.input_is_bb = FALSE;
|
||||||
mDb->mDbHelper.script_pLink.input_index = ((CKParameterOperation*)ss_Owner)->GetInParameter1() == sharedSource ? 0 : 1;
|
mDb->mDbHelper.script_pLink.input_index = ((CKParameterOperation*)ss_Owner)->GetInParameter1() == sharedSource ? 0 : 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user