當前位置: 首頁>>代碼示例>>C#>>正文


C# Containers.Notifier類代碼示例

本文整理匯總了C#中WinterLeaf.Containers.Notifier的典型用法代碼示例。如果您正苦於以下問題:C# Notifier類的具體用法?C# Notifier怎麽用?C# Notifier使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Notifier類屬於WinterLeaf.Containers命名空間,在下文中一共展示了Notifier類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: _cellLayout_OnChangeNotification

 private void _cellLayout_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".cellLayout", e.NewValue);
     }
開發者ID:RichardRanft,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coMaterial.cs

示例2: _padding_OnChangeNotification

 private void _padding_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".padding", e.NewValue);
     }
開發者ID:RichardRanft,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coGuiContainer.cs

示例3: _frameColor_OnChangeNotification

 private void _frameColor_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".frameColor", e.NewValue);
     }
開發者ID:RichardRanft,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coGuiHealthBarHud.cs

示例4: _renderOffset_OnChangeNotification

 private void _renderOffset_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".renderOffset", e.NewValue);
     }
開發者ID:RichardRanft,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coGuiCursor.cs

示例5: _elementTint_OnChangeNotification

 private void _elementTint_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".elementTint", e.NewValue);
     }
開發者ID:Winterleaf,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coLightFlareData.cs

示例6: _swimBoundingBox_OnChangeNotification

 private void _swimBoundingBox_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".swimBoundingBox", e.NewValue);
     }
開發者ID:Winterleaf,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coPlayerData.cs

示例7: _ShapeScaleMin_OnChangeNotification

 private void _ShapeScaleMin_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".ShapeScaleMin", e.NewValue);
     }
開發者ID:Winterleaf,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:cofxShapeReplicator.cs

示例8: _sunDiffuse_OnChangeNotification

 private void _sunDiffuse_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".sunDiffuse", e.NewValue);
     }
開發者ID:Winterleaf,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coGuiShapeEdPreview.cs

示例9: _massCenter_OnChangeNotification

 private void _massCenter_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".massCenter", e.NewValue);
     }
開發者ID:RichardRanft,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coVehicleData.cs

示例10: _targetSize_OnChangeNotification

 private void _targetSize_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".targetSize", e.NewValue);
     }
開發者ID:Winterleaf,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coPostEffect.cs

示例11: _billboardUVs_OnChangeNotification

 private void _billboardUVs_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".billboardUVs", e.NewValue);
     }
開發者ID:RichardRanft,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coGroundCover.cs

示例12: _hitAreaUpperLeft_OnChangeNotification

 private void _hitAreaUpperLeft_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".hitAreaUpperLeft", e.NewValue);
     }
開發者ID:RichardRanft,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coGuiGameListMenuProfile.cs

示例13: _borderColorNA_OnChangeNotification

 private void _borderColorNA_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".borderColorNA", e.NewValue);
     }
開發者ID:Winterleaf,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coGuiControlProfile.cs

示例14: _colorMultiply_OnChangeNotification

 private void _colorMultiply_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".colorMultiply", e.NewValue);
     }
開發者ID:RichardRanft,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coMaterial.cs

示例15: _ambientLightBlendCurve_OnChangeNotification

 private void _ambientLightBlendCurve_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
     {
     dnTorque.self.SetVar(_mSimObjectId + ".ambientLightBlendCurve", e.NewValue);
     }
開發者ID:Winterleaf,項目名稱:DNT-Torque3D-V1.1,代碼行數:4,代碼來源:coLevelInfo.cs


注:本文中的WinterLeaf.Containers.Notifier類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。