资源简介

棍子英雄的亮点就在于过关的必要条件就是玩家精准的预测,玩了这款游戏就是到什么叫被眼睛所欺骗,游戏的难度也正是它迷人的地方,就算玩很多遍,相信也不会腻

资源截图

代码片段和文件信息

using UnityEngine;
using System.Collections;

public class CamerFollower : MonoBehaviour
{

    Transform target;
    public float smooth = 0.1f;

    Vector3 offsetPos;
    void Start()
    {
        target = Gameobject.FindGameobjectWithTag(“Player“).transform;
        offsetPos = transform.position;
        offsetPos.x = target.position.x - transform.position.x;

    }

    // Update is called once per frame
    void Update()
    {
        if (target)
        {
            var targetPos = new Vector3(target.position.x - offsetPos.x offsetPos.y offsetPos.z);
            transform.position = Vector3.Lerp(transform.position targetPos smooth);//插值
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    ..A..H.     81408  2018-05-04 15:26  StickHero\.vs\StickHero\v14\.suo

     文件      10262  2018-05-03 19:01  StickHero\Assembly-CSharp.csproj

    I.A....      8864  2018-05-04 15:26  StickHero\Assets\Resources\Prefabs\Ground.prefab

    ..A..H.       179  2017-07-04 06:28  StickHero\Assets\Resources\Prefabs\Ground.prefab.meta

    I.A....     14392  2018-05-03 09:18  StickHero\Assets\Resources\Prefabs\Hero 1.prefab

    I.A..H.       179  2018-05-03 09:11  StickHero\Assets\Resources\Prefabs\Hero 1.prefab.meta

    I.A....     14392  2018-05-03 14:20  StickHero\Assets\Resources\Prefabs\Hero.prefab

    ..A..H.       179  2017-07-04 06:28  StickHero\Assets\Resources\Prefabs\Hero.prefab.meta

    I.A....     13080  2018-05-03 10:06  StickHero\Assets\Resources\Prefabs\Player.prefab

    ..A..H.       232  2018-05-03 10:06  StickHero\Assets\Resources\Prefabs\Player.prefab.meta

     文件       7480  2017-07-04 06:28  StickHero\Assets\Resources\Prefabs\Stick.prefab

    ..A..H.       179  2017-07-04 06:28  StickHero\Assets\Resources\Prefabs\Stick.prefab.meta

    ..A..H.       191  2017-07-04 06:28  StickHero\Assets\Resources\Prefabs.meta

    ..A..H.       191  2017-07-04 06:28  StickHero\Assets\Resources.meta

     文件       7496  2017-07-04 06:28  StickHero\Assets\StickHero\Animation\HeroAnimCtrl.controller

    ..A..H.       179  2017-07-04 06:28  StickHero\Assets\StickHero\Animation\HeroAnimCtrl.controller.meta

     文件      11700  2017-07-04 06:28  StickHero\Assets\StickHero\Animation\Idle.anim

    ..A..H.       179  2017-07-04 06:28  StickHero\Assets\StickHero\Animation\Idle.anim.meta

     文件      11228  2017-07-04 06:28  StickHero\Assets\StickHero\Animation\Walk.anim

    ..A..H.       179  2017-07-04 06:28  StickHero\Assets\StickHero\Animation\Walk.anim.meta

    ..A..H.       191  2017-07-04 06:28  StickHero\Assets\StickHero\Animation.meta

    I.A....     39464  2018-05-04 15:26  StickHero\Assets\StickHero\Scene\GameScene.unity

    ..A..H.       174  2017-07-04 06:28  StickHero\Assets\StickHero\Scene\GameScene.unity.meta

    I.A....     33728  2018-05-04 11:09  StickHero\Assets\StickHero\Scene\Start.unity

    ..A..H.       197  2018-05-03 09:10  StickHero\Assets\StickHero\Scene\Start.unity.meta

    ..A..H.       191  2017-07-04 06:28  StickHero\Assets\StickHero\Scene.meta

     文件        684  2018-05-03 22:54  StickHero\Assets\StickHero\scripts\CamerFollower.cs

    ..A..H.       264  2017-07-04 06:28  StickHero\Assets\StickHero\scripts\CamerFollower.cs.meta

     文件       2251  2018-05-03 22:54  StickHero\Assets\StickHero\scripts\GameManager.cs

    ..A..H.       264  2017-07-04 06:28  StickHero\Assets\StickHero\scripts\GameManager.cs.meta

............此处省略1019个文件信息

评论

共有 条评论