Changed GetCurrentModel to return the model instead of the tuple
This commit is contained in:
@@ -41,10 +41,9 @@ public class ModelList : ScriptableObject
|
||||
/// </summary>
|
||||
/// <param name="modelIndex">ModelIndex of the model</param>
|
||||
/// <returns>Model associated with this index, null if no model was found</returns>
|
||||
public ModelTuple GetCurrentModel()
|
||||
public NNModel GetCurrentModel()
|
||||
{
|
||||
//if(currentModelIndex < models.Find)
|
||||
return models.Find(x => x.model == models[currentModelIndex].model);
|
||||
return models.Find(x => x.model == models[currentModelIndex].model)?.model;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user