Skip to content

Commit

Permalink
Merge branch 'develop' into release/v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HarrisonHough committed Oct 4, 2023
2 parents d848e88 + 7fc7708 commit e578a6a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Runtime/WebViewPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@ public class WebViewPanel : MonoBehaviour
[SerializeField] private ScreenPadding screenPadding;

[SerializeField] private UrlConfig urlConfig;
public UrlConfig UrlConfig
{
get
{
urlConfig ??= new UrlConfig();
return urlConfig;
}
}

[Space, SerializeField] public WebViewEvent OnAvatarCreated = new WebViewEvent();
[SerializeField] public WebViewEvent OnUserSet = new WebViewEvent();
[SerializeField] public WebViewEvent OnUserAuthorized = new WebViewEvent();
Expand Down

0 comments on commit e578a6a

Please sign in to comment.