1

有没有人必须Duraton从插件中更新字段?

在 UI 上它相当智能,你可以输入

  • 5 minutes
  • 7 //defaults to minutes
  • 3 hours

它会锻炼你需要的东西。

假设该字段被调用new_foo,我应该分配什么值?诠释?

var e = new Entity("new_bar");
e.Attributes("new_foo", 5);//5 minutes?

双倍的?

var e = new Entity("new_bar");
e.Attributes("new_foo", 5.00);//5 minutes?

其他想法?

4

1 回答 1

6

DurationWhole Number类型的格式,因此您需要通过代码设置一个Int32值(在这种情况下不是负数,否则会引发异常)

该值始终以分钟为单位,因此如果要输入 3 小时,则需要将字段值设置为 180(60 分钟 x 3 小时),1 天为 1440(60 分钟 x 24 小时),依此类推。

通过界面,您可以使用小数进行设置,但它始终是整数值的表示(例如 1.5 小时等于 90 分钟)

于 2013-04-22T14:02:37.507 回答