Remove unused code
This commit is contained in:
parent
0f0c7751e3
commit
363cc28810
|
@ -89,26 +89,6 @@ public class EndpointLoader : MonoBehaviour
|
|||
return 0.8f;
|
||||
}
|
||||
|
||||
/*
|
||||
public void SpawnItem(string url, int position)
|
||||
{
|
||||
if (position < 0 || position > instantiatedItems.Count)
|
||||
{
|
||||
Debug.LogError("Invalid position");
|
||||
return;
|
||||
}
|
||||
|
||||
if (position == instantiatedItems.Count)
|
||||
{
|
||||
SpawnItem(url);
|
||||
return;
|
||||
}
|
||||
|
||||
var webView = instantiatedItems[position].GetComponentInChildren<WebView>();
|
||||
webView.Load(url);
|
||||
}
|
||||
*/
|
||||
|
||||
public void SpawnItem(string url)
|
||||
{
|
||||
if (dynamicItem != null)
|
||||
|
@ -261,13 +241,6 @@ public class EndpointLoader : MonoBehaviour
|
|||
Debug.LogWarning($"Endpoint URL is null for endpoint");
|
||||
continue;
|
||||
}
|
||||
/*
|
||||
if (instantiatedItems.Exists(item => item.GetComponentInChildren<WebView>().CurrentURL?.ToString() == endpoint.url))
|
||||
{
|
||||
Debug.LogWarning($"Endpoint {endpoint.url} already exists");
|
||||
continue;
|
||||
}
|
||||
*/
|
||||
SpawnItem(endpoint.url);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue