* @param key The string that will be the key for `value`.
* @param value The native value to be stored.
* @return This drawable.
*/
public HDrawable num(String key, float value) {
if(_extras == null) _extras = new HBundle();
_extras.num(key,value);
return this;
}