diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-06-19 01:43:02 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-06-19 01:43:02 -0300 |
commit | 7c20c386c519185bd7884dd770588a360fec9a11 (patch) | |
tree | 6b40350e17dc0e4f7f1e871922f7c177e485251f /scene/3d | |
parent | 29177e1e9b2644cfa2d5efe6fcfe2605b84ed68c (diff) |
-Added trigger mode to tracks, useful for properties that work as triggers, such as playing a sample, an animation, etc.
-Better interpolation of discrete tracks, fixes #4417
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/spatial_sample_player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/spatial_sample_player.cpp b/scene/3d/spatial_sample_player.cpp index 0df921f208..4c5b2c240e 100644 --- a/scene/3d/spatial_sample_player.cpp +++ b/scene/3d/spatial_sample_player.cpp @@ -82,7 +82,7 @@ void SpatialSamplePlayer::_get_property_list(List<PropertyInfo> *p_list) const { } } - p_list->push_back( PropertyInfo( Variant::STRING, "play/play", PROPERTY_HINT_ENUM, en,PROPERTY_USAGE_EDITOR)); + p_list->push_back( PropertyInfo( Variant::STRING, "play/play", PROPERTY_HINT_ENUM, en,PROPERTY_USAGE_EDITOR|PROPERTY_USAGE_ANIMATE_AS_TRIGGER)); } void SpatialSamplePlayer::_notification(int p_what) { |