This commit is contained in:
wangzhixun 2025-11-05 13:25:27 +08:00
parent d5ca2d2d83
commit 6a5c1ed34c
13 changed files with 31 additions and 35 deletions

View File

@ -85,6 +85,7 @@ namespace Coffee.UIEffects
/// </summary>
public virtual void OnEnable(Graphic graphic)
{
Debug.Log("GraphicConnector.OnEnable");
}
/// <summary>
@ -92,6 +93,7 @@ namespace Coffee.UIEffects
/// </summary>
public virtual void OnDisable(Graphic graphic)
{
Debug.Log("GraphicConnector.OnDisable");
}
/// <summary>

View File

@ -126,11 +126,10 @@ namespace RenderHeads.Media.AVProVideo.Editor
// Audio Output
{
SerializedProperty propAudioDelay = DisplayPlatformOption(optionsVarName, _optionUseAudioDelay);
if (propAudioDelay.boolValue)
{
//EditorGUI.indentLevel++;
//EditorGUI.indentLevel--;
}
DisplayPlatformOption(optionsVarName, _optionUseFacebookAudio360Support);
SerializedProperty propAudioOutput = DisplayPlatformOptionEnum(optionsVarName, _optionAudioOutput, _audioModesWindows);
if (_showUltraOptions && (Windows.AudioOutput)propAudioOutput.enumValueIndex == Windows.AudioOutput.FacebookAudio360)

View File

@ -146,16 +146,16 @@ namespace RenderHeads.Media.AVProVideo.Editor
EditorGUILayout.PropertyField(property.FindPropertyRelative("mediaPath"));
MediaPathDrawer.ShowBrowseButton(property.FindPropertyRelative("mediaPath"));
}
else
{
//EditorGUILayout.PropertyField(property.FindPropertyRelative("texture"));
//EditorGUILayout.PropertyField(property.FindPropertyRelative("textureDuration"));
}
EditorGUILayout.Space();
//EditorGUILayout.PropertyField(property.FindPropertyRelative("stereoPacking"));
//EditorGUILayout.PropertyField(property.FindPropertyRelative("alphaPacking"));
EditorGUILayout.Space();

View File

@ -103,7 +103,7 @@ namespace RenderHeads.Media.AVProVideo
[SerializeField, HideInInspector]
private bool enableAudio360 = false;
void ISerializationCallbackReceiver.OnBeforeSerialize() { }
void ISerializationCallbackReceiver.OnBeforeSerialize() { Debug.Log("OnBeforeSerialize");}
void ISerializationCallbackReceiver.OnAfterDeserialize()
{

View File

@ -632,7 +632,7 @@ namespace RenderHeads.Media.AVProVideo
}
/// <inheritdoc/>
public virtual void SetSlaves(IBufferedDisplay[] slaves) { }
public virtual void SetSlaves(IBufferedDisplay[] slaves) {Debug.LogWarning("SetSlaves not implemented for this platform"); }
/// <inheritdoc/>
public virtual void SetBufferedDisplayMode(BufferedFrameSelectionMode mode, IBufferedDisplay master = null) { }

View File

@ -444,14 +444,17 @@ namespace MotionFramework.Scripts.Runtime.Engine.Engine.Network.WebRequest
public void OnUpdate()
{
Debug.Log("WebRequestManager Update");
}
public void OnDestroy()
{
Debug.Log("WebRequestManager Destroy");
}
public void OnGUI()
{
Debug.Log("WebRequestManager OnGUI");
}
}
}

View File

@ -15,7 +15,7 @@ namespace Cysharp.Threading.Tasks.Linq
public static readonly IUniTaskAsyncEnumerable<T> Instance = new Empty<T>();
Empty()
{
{UnityEngine.Debug.Log("Empty<T> created");
}
public IUniTaskAsyncEnumerator<T> GetAsyncEnumerator(CancellationToken cancellationToken = default)

View File

@ -13,6 +13,7 @@ namespace Cysharp.Threading.Tasks
{
public void Forget()
{
UnityEngine.Debug.Log("UniTaskVoid.Forget called.");
}
}
}

View File

@ -32,13 +32,6 @@ public class DocumentScript : MonoBehaviour
private void Start()
{
// btclose.onClick.AddListener(() =>
// {
// if (MotionEngine.GetModule<ProcessManager>().GetCurrentStepTitle() == "检查附件及产品相关资料")
// {
// Debug.Log("1111111111111111111111111");
// TutorialGuideManager.Instance.TriggerNextGuide();
// }
// });
Debug.Log("DocumentScript Start");
}
}

View File

@ -7,7 +7,7 @@ public class WeighbridgeManager : MonoBehaviour
public GameObject che;
void Start()
{
Debug.Log("WeighbridgeManager Start");
}
// Update is called once per frame

View File

@ -64,10 +64,9 @@ public class ScrapMaterialEntryQueryManager : MonoBehaviour
QueryButton.onClick.AddListener(OnQueryButtonClicked);
}
viewPDFBt.onClick.AddListener(delegate
{
});
plane6closeBt.onClick.AddListener(OnRuku);

View File

@ -38,9 +38,8 @@ public class FlowStepController : MonoBehaviour
// Start is called before the first frame update
void Start()
{
//查找场景内所有
//Invoke(nameof(Init), 3f);
Debug.Log("FlowStepController Start");
}
/// <summary>

View File

@ -94,14 +94,14 @@ public class BaseItem : MonoBehaviour
/// 显示自己
/// </summary>
public virtual void ShowMe()
{
{Debug.Log("ShowMe");
}
/// <summary>
/// 隐藏自己
/// </summary>
public virtual void HideMe()
{
{Debug.Log("HideMe");
}
/// <summary>
@ -109,7 +109,7 @@ public class BaseItem : MonoBehaviour
/// </summary>
/// <param name="btnName"></param>
protected virtual void OnClick(string btnName)
{
{Debug.Log("OnClick");
}
/// <summary>
@ -118,7 +118,7 @@ public class BaseItem : MonoBehaviour
/// <param name="toogleName">toogle名称</param>
/// <param name="isOn">状态值</param>
protected virtual void OnChangeToggle(string toogleName, bool isOn)
{
{Debug.Log("OnChangeToggle");
}
/// <summary>
@ -127,7 +127,7 @@ public class BaseItem : MonoBehaviour
/// <param name="SliderName">Slider组件名称</param>
/// <param name="value">数值</param>
protected virtual void OnChangeSlider(string SliderName, float value)
{
{Debug.Log("OnChangeSlider");
}
/// <summary>
@ -136,6 +136,6 @@ public class BaseItem : MonoBehaviour
/// <param name="inputFileName">输入框名称</param>
/// <param name="value">输入框内的值</param>
protected virtual void OnChangeInputFile(string inputFileName, string value)
{
{Debug.Log("OnChangeInputFile");
}
}