Fix duplicated WebView(s) bug
This commit is contained in:
parent
33e20417ce
commit
0f0c7751e3
|
@ -80,15 +80,35 @@ public class EndpointLoader : MonoBehaviour
|
||||||
|
|
||||||
private float GetItemWidth(GameObject item)
|
private float GetItemWidth(GameObject item)
|
||||||
{
|
{
|
||||||
Renderer renderer = item.GetComponent<Renderer>();
|
RectTransform rectTransform = item.GetComponent<RectTransform>();
|
||||||
if (renderer != null)
|
if (rectTransform != null)
|
||||||
{
|
{
|
||||||
return renderer.bounds.size.x;
|
return rectTransform.rect.width * rectTransform.lossyScale.x + 0.2f;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1.0f;
|
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)
|
public void SpawnItem(string url)
|
||||||
{
|
{
|
||||||
if (dynamicItem != null)
|
if (dynamicItem != null)
|
||||||
|
@ -225,6 +245,15 @@ public class EndpointLoader : MonoBehaviour
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if (instantiatedItems.Count > 0)
|
||||||
|
{
|
||||||
|
foreach (var item in instantiatedItems)
|
||||||
|
{
|
||||||
|
Destroy(item);
|
||||||
|
}
|
||||||
|
instantiatedItems.Clear();
|
||||||
|
}
|
||||||
|
|
||||||
foreach (var endpoint in endpoints)
|
foreach (var endpoint in endpoints)
|
||||||
{
|
{
|
||||||
if (endpoint.url == null || endpoint.url.Length == 0)
|
if (endpoint.url == null || endpoint.url.Length == 0)
|
||||||
|
@ -232,6 +261,13 @@ public class EndpointLoader : MonoBehaviour
|
||||||
Debug.LogWarning($"Endpoint URL is null for endpoint");
|
Debug.LogWarning($"Endpoint URL is null for endpoint");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
|
if (instantiatedItems.Exists(item => item.GetComponentInChildren<WebView>().CurrentURL?.ToString() == endpoint.url))
|
||||||
|
{
|
||||||
|
Debug.LogWarning($"Endpoint {endpoint.url} already exists");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
*/
|
||||||
SpawnItem(endpoint.url);
|
SpawnItem(endpoint.url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue