本文整理汇总了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);
}
示例2: _padding_OnChangeNotification
private void _padding_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".padding", e.NewValue);
}
示例3: _frameColor_OnChangeNotification
private void _frameColor_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".frameColor", e.NewValue);
}
示例4: _renderOffset_OnChangeNotification
private void _renderOffset_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".renderOffset", e.NewValue);
}
示例5: _elementTint_OnChangeNotification
private void _elementTint_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".elementTint", e.NewValue);
}
示例6: _swimBoundingBox_OnChangeNotification
private void _swimBoundingBox_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".swimBoundingBox", e.NewValue);
}
示例7: _ShapeScaleMin_OnChangeNotification
private void _ShapeScaleMin_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".ShapeScaleMin", e.NewValue);
}
示例8: _sunDiffuse_OnChangeNotification
private void _sunDiffuse_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".sunDiffuse", e.NewValue);
}
示例9: _massCenter_OnChangeNotification
private void _massCenter_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".massCenter", e.NewValue);
}
示例10: _targetSize_OnChangeNotification
private void _targetSize_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".targetSize", e.NewValue);
}
示例11: _billboardUVs_OnChangeNotification
private void _billboardUVs_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".billboardUVs", e.NewValue);
}
示例12: _hitAreaUpperLeft_OnChangeNotification
private void _hitAreaUpperLeft_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".hitAreaUpperLeft", e.NewValue);
}
示例13: _borderColorNA_OnChangeNotification
private void _borderColorNA_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".borderColorNA", e.NewValue);
}
示例14: _colorMultiply_OnChangeNotification
private void _colorMultiply_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".colorMultiply", e.NewValue);
}
示例15: _ambientLightBlendCurve_OnChangeNotification
private void _ambientLightBlendCurve_OnChangeNotification(object o, Notifier.ChangeNotificationEventArgs e)
{
dnTorque.self.SetVar(_mSimObjectId + ".ambientLightBlendCurve", e.NewValue);
}