问题描述
这是我的代码: 如何使hitTest触发新场景?要转到另一个 This is my code: How to make the hitTest trigger new scene ? To go to another So your code can be like this, for example : Hope that can help. 这篇关于HitTest触发新的场景的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
$ p $ onClipEvent(enterFrame){
if(_root.char.hat.hitTest (this)){
_root.gotoAndStop(6);
_root.char._y + = 50;
_root.grav = 20;
$ b 场景
,可以使用或:
$ b
$ b $所以你的代码可以是这样的,例如:
$ b $ pre $ oncipEvent(enterFrame)
{
if(_root.char.hat.hitTest(this)){
// ...
gotoAndPlay(Scene 2,1);
$ b $ / code $ / pre
希望能帮上忙。 p> onClipEvent(enterFrame){
if(_root.char.hat.hitTest(this)){
_root.gotoAndStop(6);
_root.char._y +=50;
_root.grav = 20;
}
}
scene
, you can use gotoAndPlay()
or gotoAndStop()
: onClipEvent(enterFrame)
{
if(_root.char.hat.hitTest(this)){
// ...
gotoAndPlay("Scene 2", 1);
}
}