Table of Contents

Class InputFilterBase

Namespace
JLChnToZ.VRC.VVMW

Base class for URL input filters.

public abstract class InputFilterBase : UdonSharpBehaviour
Inheritance
InputFilterBase

Remarks

Implement this class to filter/replace URLs before they are loaded by the video player.

Fields

pcUrl

The URL (PC) to be filtered.

[NonSerialized]
public VRCUrl pcUrl

Field Value

VRCUrl

Remarks

This will be the requested URL from the user before the video player loads it. To reject the URL, set this to VRCUrl.Empty.

questUrl

The URL (Quest) to be filtered.

[NonSerialized]
public VRCUrl questUrl

Field Value

VRCUrl

Remarks

This will be the requested URL from the user before the video player loads it. To reject the URL, set this to VRCUrl.Empty.

Methods

_ValidateUrls()

This will be called when the user requests a URL.

public abstract void _ValidateUrls()

Remarks

Implement your filtering logic here.