initial fix for version scan
Signed-off-by: chcurran <82187351+carlitosan@users.noreply.github.com>
This commit is contained in:
@@ -88,13 +88,13 @@ namespace ScriptCanvasEditor
|
||||
|
||||
void Enter() override
|
||||
{
|
||||
//Log("ENTER >> %s", GetName());
|
||||
Log("ENTER >> %s", GetName());
|
||||
OnEnter();
|
||||
}
|
||||
|
||||
ExitStatus Exit() override
|
||||
{
|
||||
//Log("EXIT << %s", GetName());
|
||||
Log("EXIT << %s", GetName());
|
||||
return OnExit();
|
||||
}
|
||||
|
||||
|
||||
@@ -117,9 +117,10 @@ namespace ScriptCanvasEditor
|
||||
size_t m_currentAssetIndex = 0;
|
||||
size_t m_inspectedAssets = 0;
|
||||
|
||||
AZStd::vector<AZ::Data::Asset<AZ::Data::AssetData>> m_activeAssets;
|
||||
|
||||
IUpgradeRequests::AssetList m_assetsToInspect;
|
||||
IUpgradeRequests::AssetList::iterator m_inspectingAsset;
|
||||
|
||||
using UpgradeAssets = AZStd::vector<AZ::Data::Asset<AZ::Data::AssetData>>;
|
||||
UpgradeAssets m_assetsToUpgrade;
|
||||
UpgradeAssets::iterator m_inProgressAsset;
|
||||
@@ -157,5 +158,7 @@ namespace ScriptCanvasEditor
|
||||
|
||||
bool m_overwriteAll = false;
|
||||
void PerformMove(AZ::Data::Asset<AZ::Data::AssetData>& asset, const AZStd::string& source, const AZStd::string& target);
|
||||
|
||||
void Log(const char* format, ...);
|
||||
};
|
||||
}
|
||||
|
||||
@@ -321,6 +321,26 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="6">
|
||||
<widget class="QCheckBox" name="forceUpgrade">
|
||||
<property name="text">
|
||||
<string>Force Upgrade</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="7">
|
||||
<widget class="QCheckBox" name="verbose">
|
||||
<property name="text">
|
||||
<string>Verbose</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="4">
|
||||
<widget class="QPushButton" name="closeButton">
|
||||
<property name="sizePolicy">
|
||||
|
||||
@@ -128,6 +128,7 @@
|
||||
<addaction name="action_GraphValidation"/>
|
||||
<addaction name="action_Debugging"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="action_UpgradeTool"/>
|
||||
<addaction name="action_ViewUnitTestManager"/>
|
||||
<addaction name="action_NodeStatistics"/>
|
||||
<addaction name="action_PresetsEditor"/>
|
||||
|
||||
Reference in New Issue
Block a user