set some parameters to not-keyframable

This commit is contained in:
itsmattkc
2019-12-27 01:25:52 +11:00
parent 52672cc031
commit 7a512cc540
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -23,6 +23,7 @@
ClipBlock::ClipBlock()
{
texture_input_ = new NodeInput("buffer_in", NodeInput::kBuffer);
texture_input_->set_is_keyframable(false);
AddInput(texture_input_);
}
+2
View File
@@ -3,9 +3,11 @@
TransitionBlock::TransitionBlock()
{
out_block_input_ = new NodeInput("out_block_in", NodeParam::kBuffer);
out_block_input_->set_is_keyframable(false);
AddInput(out_block_input_);
in_block_input_ = new NodeInput("in_block_in", NodeParam::kBuffer);
in_block_input_->set_is_keyframable(false);
AddInput(in_block_input_);
// A block's length must be greater than 0