9.00001
This commit is contained in:
parent
d5ca2d2d83
commit
6a5c1ed34c
|
|
@ -85,6 +85,7 @@ namespace Coffee.UIEffects
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual void OnEnable(Graphic graphic)
|
public virtual void OnEnable(Graphic graphic)
|
||||||
{
|
{
|
||||||
|
Debug.Log("GraphicConnector.OnEnable");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -92,6 +93,7 @@ namespace Coffee.UIEffects
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual void OnDisable(Graphic graphic)
|
public virtual void OnDisable(Graphic graphic)
|
||||||
{
|
{
|
||||||
|
Debug.Log("GraphicConnector.OnDisable");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
|
|
@ -126,11 +126,10 @@ namespace RenderHeads.Media.AVProVideo.Editor
|
||||||
// Audio Output
|
// Audio Output
|
||||||
{
|
{
|
||||||
SerializedProperty propAudioDelay = DisplayPlatformOption(optionsVarName, _optionUseAudioDelay);
|
SerializedProperty propAudioDelay = DisplayPlatformOption(optionsVarName, _optionUseAudioDelay);
|
||||||
if (propAudioDelay.boolValue)
|
|
||||||
{
|
|
||||||
//EditorGUI.indentLevel++;
|
|
||||||
//EditorGUI.indentLevel--;
|
|
||||||
}
|
|
||||||
DisplayPlatformOption(optionsVarName, _optionUseFacebookAudio360Support);
|
DisplayPlatformOption(optionsVarName, _optionUseFacebookAudio360Support);
|
||||||
SerializedProperty propAudioOutput = DisplayPlatformOptionEnum(optionsVarName, _optionAudioOutput, _audioModesWindows);
|
SerializedProperty propAudioOutput = DisplayPlatformOptionEnum(optionsVarName, _optionAudioOutput, _audioModesWindows);
|
||||||
if (_showUltraOptions && (Windows.AudioOutput)propAudioOutput.enumValueIndex == Windows.AudioOutput.FacebookAudio360)
|
if (_showUltraOptions && (Windows.AudioOutput)propAudioOutput.enumValueIndex == Windows.AudioOutput.FacebookAudio360)
|
||||||
|
|
|
||||||
|
|
@ -146,16 +146,16 @@ namespace RenderHeads.Media.AVProVideo.Editor
|
||||||
EditorGUILayout.PropertyField(property.FindPropertyRelative("mediaPath"));
|
EditorGUILayout.PropertyField(property.FindPropertyRelative("mediaPath"));
|
||||||
MediaPathDrawer.ShowBrowseButton(property.FindPropertyRelative("mediaPath"));
|
MediaPathDrawer.ShowBrowseButton(property.FindPropertyRelative("mediaPath"));
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
//EditorGUILayout.PropertyField(property.FindPropertyRelative("texture"));
|
|
||||||
//EditorGUILayout.PropertyField(property.FindPropertyRelative("textureDuration"));
|
|
||||||
}
|
|
||||||
|
|
||||||
EditorGUILayout.Space();
|
EditorGUILayout.Space();
|
||||||
|
|
||||||
//EditorGUILayout.PropertyField(property.FindPropertyRelative("stereoPacking"));
|
|
||||||
//EditorGUILayout.PropertyField(property.FindPropertyRelative("alphaPacking"));
|
|
||||||
|
|
||||||
EditorGUILayout.Space();
|
EditorGUILayout.Space();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -103,7 +103,7 @@ namespace RenderHeads.Media.AVProVideo
|
||||||
[SerializeField, HideInInspector]
|
[SerializeField, HideInInspector]
|
||||||
private bool enableAudio360 = false;
|
private bool enableAudio360 = false;
|
||||||
|
|
||||||
void ISerializationCallbackReceiver.OnBeforeSerialize() { }
|
void ISerializationCallbackReceiver.OnBeforeSerialize() { Debug.Log("OnBeforeSerialize");}
|
||||||
|
|
||||||
void ISerializationCallbackReceiver.OnAfterDeserialize()
|
void ISerializationCallbackReceiver.OnAfterDeserialize()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -632,7 +632,7 @@ namespace RenderHeads.Media.AVProVideo
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public virtual void SetSlaves(IBufferedDisplay[] slaves) { }
|
public virtual void SetSlaves(IBufferedDisplay[] slaves) {Debug.LogWarning("SetSlaves not implemented for this platform"); }
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public virtual void SetBufferedDisplayMode(BufferedFrameSelectionMode mode, IBufferedDisplay master = null) { }
|
public virtual void SetBufferedDisplayMode(BufferedFrameSelectionMode mode, IBufferedDisplay master = null) { }
|
||||||
|
|
|
||||||
|
|
@ -444,14 +444,17 @@ namespace MotionFramework.Scripts.Runtime.Engine.Engine.Network.WebRequest
|
||||||
|
|
||||||
public void OnUpdate()
|
public void OnUpdate()
|
||||||
{
|
{
|
||||||
|
Debug.Log("WebRequestManager Update");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void OnDestroy()
|
public void OnDestroy()
|
||||||
{
|
{
|
||||||
|
Debug.Log("WebRequestManager Destroy");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void OnGUI()
|
public void OnGUI()
|
||||||
{
|
{
|
||||||
|
Debug.Log("WebRequestManager OnGUI");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -15,7 +15,7 @@ namespace Cysharp.Threading.Tasks.Linq
|
||||||
public static readonly IUniTaskAsyncEnumerable<T> Instance = new Empty<T>();
|
public static readonly IUniTaskAsyncEnumerable<T> Instance = new Empty<T>();
|
||||||
|
|
||||||
Empty()
|
Empty()
|
||||||
{
|
{UnityEngine.Debug.Log("Empty<T> created");
|
||||||
}
|
}
|
||||||
|
|
||||||
public IUniTaskAsyncEnumerator<T> GetAsyncEnumerator(CancellationToken cancellationToken = default)
|
public IUniTaskAsyncEnumerator<T> GetAsyncEnumerator(CancellationToken cancellationToken = default)
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@ namespace Cysharp.Threading.Tasks
|
||||||
{
|
{
|
||||||
public void Forget()
|
public void Forget()
|
||||||
{
|
{
|
||||||
|
UnityEngine.Debug.Log("UniTaskVoid.Forget called.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -32,13 +32,6 @@ public class DocumentScript : MonoBehaviour
|
||||||
|
|
||||||
private void Start()
|
private void Start()
|
||||||
{
|
{
|
||||||
// btclose.onClick.AddListener(() =>
|
Debug.Log("DocumentScript Start");
|
||||||
// {
|
|
||||||
// if (MotionEngine.GetModule<ProcessManager>().GetCurrentStepTitle() == "检查附件及产品相关资料")
|
|
||||||
// {
|
|
||||||
// Debug.Log("1111111111111111111111111");
|
|
||||||
// TutorialGuideManager.Instance.TriggerNextGuide();
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -7,7 +7,7 @@ public class WeighbridgeManager : MonoBehaviour
|
||||||
public GameObject che;
|
public GameObject che;
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
|
Debug.Log("WeighbridgeManager Start");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update is called once per frame
|
// Update is called once per frame
|
||||||
|
|
|
||||||
|
|
@ -64,10 +64,9 @@ public class ScrapMaterialEntryQueryManager : MonoBehaviour
|
||||||
QueryButton.onClick.AddListener(OnQueryButtonClicked);
|
QueryButton.onClick.AddListener(OnQueryButtonClicked);
|
||||||
|
|
||||||
}
|
}
|
||||||
viewPDFBt.onClick.AddListener(delegate
|
|
||||||
{
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
plane6closeBt.onClick.AddListener(OnRuku);
|
plane6closeBt.onClick.AddListener(OnRuku);
|
||||||
|
|
|
||||||
|
|
@ -38,9 +38,8 @@ public class FlowStepController : MonoBehaviour
|
||||||
// Start is called before the first frame update
|
// Start is called before the first frame update
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
//查找场景内所有
|
|
||||||
|
|
||||||
//Invoke(nameof(Init), 3f);
|
Debug.Log("FlowStepController Start");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
|
|
@ -94,14 +94,14 @@ public class BaseItem : MonoBehaviour
|
||||||
/// 显示自己
|
/// 显示自己
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual void ShowMe()
|
public virtual void ShowMe()
|
||||||
{
|
{Debug.Log("ShowMe");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 隐藏自己
|
/// 隐藏自己
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual void HideMe()
|
public virtual void HideMe()
|
||||||
{
|
{Debug.Log("HideMe");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -109,7 +109,7 @@ public class BaseItem : MonoBehaviour
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="btnName"></param>
|
/// <param name="btnName"></param>
|
||||||
protected virtual void OnClick(string btnName)
|
protected virtual void OnClick(string btnName)
|
||||||
{
|
{Debug.Log("OnClick");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -118,7 +118,7 @@ public class BaseItem : MonoBehaviour
|
||||||
/// <param name="toogleName">toogle名称</param>
|
/// <param name="toogleName">toogle名称</param>
|
||||||
/// <param name="isOn">状态值</param>
|
/// <param name="isOn">状态值</param>
|
||||||
protected virtual void OnChangeToggle(string toogleName, bool isOn)
|
protected virtual void OnChangeToggle(string toogleName, bool isOn)
|
||||||
{
|
{Debug.Log("OnChangeToggle");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -127,7 +127,7 @@ public class BaseItem : MonoBehaviour
|
||||||
/// <param name="SliderName">Slider组件名称</param>
|
/// <param name="SliderName">Slider组件名称</param>
|
||||||
/// <param name="value">数值</param>
|
/// <param name="value">数值</param>
|
||||||
protected virtual void OnChangeSlider(string SliderName, float value)
|
protected virtual void OnChangeSlider(string SliderName, float value)
|
||||||
{
|
{Debug.Log("OnChangeSlider");
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -136,6 +136,6 @@ public class BaseItem : MonoBehaviour
|
||||||
/// <param name="inputFileName">输入框名称</param>
|
/// <param name="inputFileName">输入框名称</param>
|
||||||
/// <param name="value">输入框内的值</param>
|
/// <param name="value">输入框内的值</param>
|
||||||
protected virtual void OnChangeInputFile(string inputFileName, string value)
|
protected virtual void OnChangeInputFile(string inputFileName, string value)
|
||||||
{
|
{Debug.Log("OnChangeInputFile");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue