9.00002
This commit is contained in:
parent
6a5c1ed34c
commit
5ecd6e5118
|
|
@ -247,9 +247,9 @@ namespace RenderHeads.Media.AVProVideo
|
|||
/// <inheritdoc/>
|
||||
public virtual bool IsExternalPlaybackActive() { return false; }
|
||||
/// <inheritdoc/>
|
||||
public virtual void SetAllowsExternalPlayback(bool enable) { }
|
||||
public virtual void SetAllowsExternalPlayback(bool enable) { Debug.Log("External playback not supported on this platform"); }
|
||||
/// <inheritdoc/>
|
||||
public virtual void SetExternalPlaybackVideoGravity(ExternalPlaybackVideoGravity gravity) { }
|
||||
public virtual void SetExternalPlaybackVideoGravity(ExternalPlaybackVideoGravity gravity) { Debug.Log("External playback not supported on this platform"); }
|
||||
|
||||
// Authentication
|
||||
//public virtual void SetKeyServerURL(string url) { }
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace NaughtyAttributes
|
||||
{
|
||||
|
|
@ -26,7 +27,7 @@ namespace NaughtyAttributes
|
|||
|
||||
public ProgressBarAttribute(float maxValue, EColor color = EColor.Blue)
|
||||
: this("", maxValue, color)
|
||||
{
|
||||
{UnityEngine.Debug.Log("ProgressBarAttribute");
|
||||
}
|
||||
|
||||
public ProgressBarAttribute(string maxValueName, EColor color = EColor.Blue)
|
||||
|
|
|
|||
|
|
@ -163,9 +163,9 @@ namespace Cysharp.Threading.Tasks
|
|||
|
||||
public bool IsCompleted => !cancellationToken.CanBeCanceled || cancellationToken.IsCancellationRequested;
|
||||
|
||||
public void GetResult()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public void OnCompleted(Action continuation)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1088,7 +1088,7 @@ namespace Cysharp.Threading.Tasks
|
|||
|
||||
public bool IsCompleted => false;
|
||||
|
||||
public void GetResult() { }
|
||||
public void GetResult() {Debug.Log("GetResult"); }
|
||||
|
||||
public void OnCompleted(Action continuation)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.ExceptionServices;
|
||||
using System.Threading;
|
||||
using Cysharp.Threading.Tasks.Internal;
|
||||
|
|
@ -647,15 +648,15 @@ namespace Cysharp.Threading.Tasks.Internal
|
|||
}
|
||||
|
||||
public void OnCompleted()
|
||||
{
|
||||
{UnityEngine.Debug.Log("EmptyObserver<T>.OnCompleted");
|
||||
}
|
||||
|
||||
public void OnError(Exception error)
|
||||
{
|
||||
{UnityEngine.Debug.Log("EmptyObserver<T>.OnError");
|
||||
}
|
||||
|
||||
public void OnNext(T value)
|
||||
{
|
||||
{UnityEngine.Debug.Log("EmptyObserver<T>.OnNext");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -669,7 +670,7 @@ namespace Cysharp.Threading.Tasks.Internal
|
|||
}
|
||||
|
||||
public void OnCompleted()
|
||||
{
|
||||
{UnityEngine.Debug.Log("ThrowObserver<T>.OnCompleted");
|
||||
}
|
||||
|
||||
public void OnError(Exception error)
|
||||
|
|
@ -678,7 +679,7 @@ namespace Cysharp.Threading.Tasks.Internal
|
|||
}
|
||||
|
||||
public void OnNext(T value)
|
||||
{
|
||||
{UnityEngine.Debug.Log("ThrowObserver<T>.OnNext");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -14,9 +14,7 @@ public class SetHorizontal : MonoBehaviour
|
|||
// Use this for initialization
|
||||
void Start()
|
||||
{
|
||||
|
||||
//Init();
|
||||
//Nevigate(content.GetChild(45).GetComponent<RectTransform>());
|
||||
Debug.Log("SetHorizontal Start");
|
||||
}
|
||||
|
||||
private void Init()
|
||||
|
|
|
|||
|
|
@ -54,10 +54,10 @@ public class ChangeScence : MonoBehaviour
|
|||
}
|
||||
});
|
||||
}
|
||||
void Update()
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// 延迟显示黑屏
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -33,10 +33,10 @@ public class SwitchgearMaterialRequestSystem : MonoBehaviour
|
|||
|
||||
private bool isfirst = true;
|
||||
|
||||
private void OnEnable()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Start is called before the first frame update
|
||||
void Start()
|
||||
|
|
|
|||
|
|
@ -240,7 +240,6 @@ public class MaterialCenter : MonoBehaviour
|
|||
{
|
||||
List<string> toggleValues = GetToggleValues();
|
||||
var processManager = MotionFramework.MotionEngine.GetModule<ProcessManager>();
|
||||
|
||||
if (IsTeachingOrPreviewMode(processManager))
|
||||
{
|
||||
if (processManager.HandleClick(toggleValues))
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ public class DeliveryList : MonoBehaviour
|
|||
// Start is called before the first frame update
|
||||
void Start()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
|
||||
Debug.Log("DeliveryList Start");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,13 +4,13 @@ using TMPro;
|
|||
using UnityEngine;
|
||||
|
||||
/// <summary>
|
||||
/// 结余物资退料入库单
|
||||
/// 结余物资退料入库单
|
||||
/// </summary>
|
||||
public class MaterialReturnWarehousingList
|
||||
: MonoBehaviour
|
||||
{
|
||||
/// <summary>
|
||||
/// 物料描述文本
|
||||
/// 物料描述文本
|
||||
/// </summary>
|
||||
public TextMeshProUGUI Materialdescription;
|
||||
void Start()
|
||||
|
|
@ -19,10 +19,4 @@ public class MaterialReturnWarehousingList
|
|||
Materialdescription.text = data.materialName;
|
||||
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,12 +4,12 @@ using TMPro;
|
|||
using UnityEngine;
|
||||
|
||||
/// <summary>
|
||||
/// 废旧物资移交单
|
||||
/// 废旧物资移交单
|
||||
/// </summary>
|
||||
public class WasteMaterialsFandoverForm : MonoBehaviour
|
||||
{
|
||||
/// <summary>
|
||||
/// 物料描述文本
|
||||
/// 物料描述文本
|
||||
/// </summary>
|
||||
public TextMeshProUGUI Materialdescription;
|
||||
void Start()
|
||||
|
|
@ -18,10 +18,4 @@ public class WasteMaterialsFandoverForm : MonoBehaviour
|
|||
Materialdescription.text = data.materialName;
|
||||
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -144,7 +144,7 @@ public class BasePanel : MonoBehaviour
|
|||
/// <param name="value">Slider的当前值</param>
|
||||
protected virtual void OnChangeSlider(string sliderPath, float value)
|
||||
{
|
||||
// 处理Slider值变化事件
|
||||
Debug.Log(sliderPath + " 处理Slider值变化事件: " + value);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Reference in New Issue