Skip to content

Commit

Permalink
chore: renamed methods in bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelOsborne committed Jun 25, 2024
1 parent bcba6cf commit 310d64b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dotlottie-ffi/emscripten_bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,9 @@ EMSCRIPTEN_BINDINGS(DotLottiePlayer)
.function("stopStateMachine", &DotLottiePlayer::stop_state_machine)
.function("postEventPayload", &DotLottiePlayer::post_serialized_event)
.function("stateMachineFrameworkSetup", &DotLottiePlayer::state_machine_framework_setup)
.function("set_state_machine_numeric_context", &DotLottiePlayer::set_state_machine_numeric_context)
.function("set_state_machine_string_context", &DotLottiePlayer::set_state_machine_string_context)
.function("set_state_machine_boolean_context", &DotLottiePlayer::set_state_machine_boolean_context);
.function("setStateMachineNumericContext", &DotLottiePlayer::set_state_machine_numeric_context)
.function("setStateMachineStringContext", &DotLottiePlayer::set_state_machine_string_context)
.function("setStateMachineBooleanContext", &DotLottiePlayer::set_state_machine_boolean_context);

// .function("state_machine_subscribe", &DotLottiePlayer::state_machine_subscribe)
// .function("state_machine_unsubscribe", &DotLottiePlayer::state_machine_unsubscribe)
Expand Down

0 comments on commit 310d64b

Please sign in to comment.