• 大小: 4.9MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-04
  • 语言: C#
  • 标签: Unity  U3D  C#  源代码  

资源简介

用C#开发的Unity捕鱼小游戏源代码,有需要的同学可以下载看看,Unity3D的2D游戏开发项目。

资源截图

代码片段和文件信息

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class BulletBrith : MonoBehaviour
{
    public Gameobject bullet;
    PoolManager pool;
    void Start()
    {
       pool= Gameobject.FindWithTag(“pool“).GetComponent();
    }
    void Update()
    {
        
        if (Input.GetKeyDown(KeyCode.Space))
        {
            Gameobject obj= pool.CreateobjectByType(PoolType.bullet);
            obj.transform.position = transform.position;
            obj.transform.rotation = transform.rotation;
        }
    }
}

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

     文件        593  2019-09-26 04:19  UnityFishWeb\BulletBrith.cs

     文件       1305  2019-09-26 07:30  UnityFishWeb\bulletMove.cs

     文件        463  2019-09-26 06:29  UnityFishWeb\CanonControl.cs

     文件    5129040  2019-09-26 04:19  UnityFishWeb\fish.unitypackage

     文件        913  2019-09-26 07:24  UnityFishWeb\fishBrith.cs

     文件       1309  2019-09-26 04:19  UnityFishWeb\fishMove.cs

     文件       3740  2019-09-26 04:19  UnityFishWeb\PoolManager.cs

     文件        362  2019-09-26 07:30  UnityFishWeb\WebBrithToDie.cs

     目录          0  2019-12-27 08:50  UnityFishWeb

----------- ---------  ---------- -----  ----

              5137725                    9


评论

共有 条评论