cocos角色移动方式切换

import { _decorator, BoxCollider, CapsuleCollider, CharacterController, Component, EventKeyboard, EventMouse, geometry, Input, input, KeyCode, Node, physics, PhysicsGroup, PhysicsSystem, RigidBody, v2, v3, Vec2, Vec3 } from 'cc';

const { ccclass, property } = _decorator;



 

@ccclass('c1')

export class c1 extends Component {

    sp1: number = 2

    res1: Vec3 = v3(0, 0, 0)

    x1: number = 0

    z1: number = 0

    characterController: CharacterController = null

    mask = 0xffffffff;

    maxDistance = 10000000;

    queryTrigger = false

    @property({ type: physics.PhysicsGroup })

    group1: PhysicsGroup

    start() {

        this.characterController = this.node.getComponent(CharacterController)

        //旋转视角

        input.on(Input.EventType.MOUSE_MOVE, this.onMouseMove, this)

        input.on(Input.EventType.KEY_DOWN, this.onKeyDown, this)

        input.on(Input.EventType.KEY_UP, this.onKeyUp, this)



 

    }

    onKeyDown(event: EventKeyboard) {

        if (event.keyCode == KeyCode.KEY_W) {

            this.z1 = -1

        }

        if (event.keyCode == KeyCode.KEY_A) {

            this.x1 = -1

        }

        if (event.keyCode == KeyCode.KEY_S) {

            this.z1 = 1

        }

        if (event.keyCode == KeyCode.KEY_D) {

            this.x1 = 1

        }



 

    }

    onKeyUp(event: EventKeyboard) {

        if (event.keyCode == KeyCode.KEY_W) {

            this.z1 = 0

        }

        if (event.keyCode == KeyCode.KEY_A && this.x1 == -1) {

            this.x1 = 0

        }

        if (event.keyCode == KeyCode.KEY_S) {

            this.z1 = 0

        }

        if (event.keyCode == KeyCode.KEY_D && this.x1 == 1) {

            this.x1 = 0

        }

    }

    //旋转视角

    onMouseMove(event: EventMouse) {

        if (event.getButton() == 2) {

            //获取本地坐标系下的旋转,用欧拉角表示

            let fe1 = this.node.eulerAngles.x

            let fe2 = this.node.eulerAngles.y

            //鼠标在UI坐标系下的移动距离

            let x1 = event.movementX * 0.5

            let y1 = event.movementY * 0.5

            //用欧拉角设置世界坐标系下的旋转

            fe1 += -y1

            fe2 += -x1

            if (fe1 > -80 && fe1 < 80) {

                this.node.setRotationFromEuler(fe1, fe2, 0)

            }

        }

    }

    update(deltaTime: number) {

        // 根据自身方向,转化方向

        this.res1 = new Vec3(this.x1 * this.sp1 * deltaTime, 0, this.z1 * this.sp1 * deltaTime);

        //获取节点的本地化局部旋转方向,1:返回值,2:需要转换的方向向量,3:当前本地旋转

        Vec3.transformQuat(this.res1, this.res1, this.node.getWorldRotation());

        //在载具外移动的方式

        if (this.characterController.enabled && !this.node.getComponents(CapsuleCollider)[0].enabled) {

            this.characterController.move(v3(this.res1.x, -0.2, this.res1.z));

        }

        //在载具内移动的方式

        if (this.node.getComponents(CapsuleCollider)[0].enabled && !this.characterController.enabled) {

            this.node.setPosition(this.node.position)

            let z1 = this.node.worldPosition

            let ray1 = geometry.Ray.create(z1.x, z1.y, z1.z, this.res1.x, 0, this.res1.z)

            if (PhysicsSystem.instance.raycastClosest(ray1, this.group1, 1.2, this.queryTrigger)) {

                let s1 = PhysicsSystem.instance.raycastClosestResult.distance

                console.log(s1 + 'sssss')

                this.node.setWorldPosition(z1.x, z1.y, z1.z)

                return

            }

            this.node.setWorldPosition(this.res1.x + z1.x, z1.y, this.res1.z + z1.z)

        }

    }

}




 

Cocos Creator是一款基于Cocos2d-x游戏引擎的游戏开发工具,它提供了丰富的API和功能来开发移动端和Web游戏。在Cocos Creator中实现路径点移动,可以通过以下步骤进行操作: 1. 创建路径点:在场景中创建一个节点作为路径点,可以使用Sprite组件来可视化路径点。通过设置节点的position属性,可以确定路径点在场景中的位置。 2. 创建移动对象:在场景中创建一个需要进行路径移动的对象,可以是玩家角色、敌人或其他游戏元素。添加相应的脚本组件来控制对象的移动。 3. 设置路径点移动逻辑:在移动对象的脚本组件中,设置路径点移动的逻辑。可以使用定时器或帧事件来控制移动对象的移动速度和路径点的切换。 4. 实现路径点的移动:在移动对象的脚本组件中,使用Cocos Creator提供的移动方法(例如cc.moveTo、cc.moveBy)来实现从当前位置到下一个路径点的移动。 5. 路径点的切换:在移动对象的脚本组件中,根据移动对象当前位置和路径点之间的距离,判断是否需要切换到下一个路径点。当移动对象接近当前路径点时,通过代码设置移动对象的目标位置为下一个路径点的位置。 6. 循环移动:根据游戏需求,可以设置移动对象是否需要循环移动路径点。如果需要循环移动,当移动对象到达最后一个路径点时,将其目标位置设置为第一个路径点的位置。 通过以上步骤,在Cocos Creator中可以实现路径点移动的效果。可以根据具体的游戏需求进行调整和扩展,添加更多的逻辑和动画效果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值