1
0
Fork 0
LaboratoryProtection/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/LogEntryExtensions.cs

14 lines
329 B
C#
Raw Normal View History

2023-09-12 15:55:51 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace UniRx.Diagnostics
{
public static partial class LogEntryExtensions
{
public static IDisposable LogToUnityDebug(this IObservable<LogEntry> source)
{
return source.Subscribe(new UnityDebugSink());
}
}
}