File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -348,12 +348,12 @@ private void invokeMethod(MethodBase method)
348
348
/// <summary>
349
349
/// Retrieves the player instance that gives you information about the local player, their built-in avatar parameters, and input controls
350
350
/// </summary>
351
- protected Player GetPlayer ( ) => AppManager . GetInstance ( ) . VRChatClient . Player ;
351
+ public Player GetPlayer ( ) => AppManager . GetInstance ( ) . VRChatClient . Player ;
352
352
353
353
/// <summary>
354
354
/// Allows you to access the current state of SteamVR (or any OpenVR runtime)
355
355
/// </summary>
356
- protected OVRClient GetOVRClient ( ) => AppManager . GetInstance ( ) . OVRClient ;
356
+ public OVRClient GetOVRClient ( ) => AppManager . GetInstance ( ) . OVRClient ;
357
357
358
358
#region Callbacks
359
359
@@ -391,7 +391,7 @@ protected virtual void OnPlayerUpdate()
391
391
/// Logs to the terminal when the module is running
392
392
/// </summary>
393
393
/// <param name="message">The message to log to the terminal</param>
394
- protected void Log ( string message )
394
+ public void Log ( string message )
395
395
{
396
396
Logger . Log ( $ "[{ Title } ]: { message } ", LoggingTarget . Terminal ) ;
397
397
}
@@ -400,7 +400,7 @@ protected void Log(string message)
400
400
/// Logs to a module debug file when enabled in the settings
401
401
/// </summary>
402
402
/// <param name="message">The message to log to the file</param>
403
- protected void LogDebug ( string message )
403
+ public void LogDebug ( string message )
404
404
{
405
405
if ( ! SettingsManager . GetInstance ( ) . GetValue < bool > ( VRCOSCSetting . EnableAppDebug ) ) return ;
406
406
You can’t perform that action at this time.
0 commit comments