Skip to content

Commit

Permalink
Make URL button create an empty URL
Browse files Browse the repository at this point in the history
Avoids issues with VRCUrls not having an equality op for now...
  • Loading branch information
MerlinVR committed Sep 28, 2022
1 parent 6ee185a commit 37e1d17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Assets/USharpVideo/Examples/Scripts/PlayURLButton.cs
Expand Up @@ -15,7 +15,7 @@ namespace UdonSharp.Video.Examples
public class PlayURLButton : UdonSharpBehaviour
{
public USharpVideoPlayer targetVideoPlayer;
public VRCUrl url = VRCUrl.Empty;
public VRCUrl url = new VRCUrl("");

Button button;

Expand Down
2 changes: 1 addition & 1 deletion Assets/USharpVideo/version.txt
@@ -1 +1 @@
v1.0.0
v1.0.1

0 comments on commit 37e1d17

Please sign in to comment.