AnimationEventの引数を複数渡す方法

引数を複数指定するとAnimationEventとして認識されない。

public void PlaySE(int num, string value){
    //この方法だとAnimationEventに認識されない

}

 

 

引数をAnimationEvent型にしてあげると全部の引数を渡せる

public void PlaySE(AnimationEvent animationEvent){

     int num = animationEvent.intParameter;
     string value = animationEvent.stringParameter;
           
    //なんか色々使える
     
}

 

関連記事


Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 44

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 45

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 46

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 44

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 45

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 46

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 44

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 45

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 46

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 44

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 45

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 46

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 44

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 45

Warning: Trying to access array offset on false in /home/sirohood/sirohood.exp.jp/public_html/wp-content/themes/oria/single.php on line 46



コメントを残す

※コメントは承認後に表示されます。
 コメントを公開されたくない場合、名前の後に「:非公開」とつけてください。