本文介绍了HitTest触发新的场景的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的代码:

$ p $ onClipEvent(enterFrame){
if(_root.char.hat.hitTest (this)){
_root.gotoAndStop(6);
_root.char._y + = 50;
_root.grav = 20;






$ b

如何使hitTest触发新场景?要转到另一个场景,可以使用或:
$ b


$ b $所以你的代码可以是这样的,例如:
$ b $ pre $ oncipEvent(enterFrame)
{
if(_root.char.hat.hitTest(this)){

// ...

gotoAndPlay(Scene 2,1);


$ b $ / code $ / pre

希望能帮上忙。 p>

This is my code:

onClipEvent(enterFrame){
    if(_root.char.hat.hitTest(this)){
        _root.gotoAndStop(6);
        _root.char._y +=50;
        _root.grav = 20;
    }
}

How to make the hitTest trigger new scene ?

解决方案

To go to another scene, you can use gotoAndPlay() or gotoAndStop() :

So your code can be like this, for example :

onClipEvent(enterFrame)
{
    if(_root.char.hat.hitTest(this)){

        // ...

        gotoAndPlay("Scene 2", 1);

    }
}

Hope that can help.

这篇关于HitTest触发新的场景的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 02:19