serialize and save InterpSettings, float interpFactor variable

This commit is contained in:
N00MKRAD
2021-02-01 18:05:50 +01:00
parent 81a158e44f
commit 2b1fa68418
14 changed files with 119 additions and 49 deletions

View File

@@ -19,5 +19,16 @@ namespace Flowframes.Data
networks.Add(rifeNcnn);
networks.Add(dainNcnn);
}
public static AI GetAi (string aiName)
{
foreach(AI ai in networks)
{
if (ai.aiName == aiName)
return ai;
}
return networks[0];
}
}
}