You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey there,
I downloaded this and opened the project up, but there is an error of:
Assets/ModPlayerSDK/Editor/UI/CreateAppWindow.cs(56,58): error CS1061: 'CreateAppResponse' does not contain a definition for'app' and no accessible extension method 'app' accepting a first
argument of type'CreateAppResponse' could be found (are you missing a using directive or an assembly reference?)
Which looks to be caused by these fellas below:
// CreateAppWindow.cs// -- This creates App()51:varresp=awaitApp.CreateApp(appName);// -- 'resp.app' doesn't exist, so 'id' doesn't as well, but 'resp' has '.app_id'56:.GetReference($"thumbnails/{resp.app.id}");// -- This wants 'resp.app', but that doesn't exist.// -- SetThumbnail wants either 'App' or 'ModApp', but 'resp' is 'CreateAppResponse', and only has 'resp.app_id'// -- I am not quite sure what the intended setup is supposed to be, though.63:awaitApp.SetThumbnail(resp.app,url.ToString());
Thanks,
-MH
The text was updated successfully, but these errors were encountered:
Hey there,
I downloaded this and opened the project up, but there is an error of:
Which looks to be caused by these fellas below:
Thanks,
-MH
The text was updated successfully, but these errors were encountered: