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