自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

原创 [Minecraft][Mod开发]如何做一个告示牌点赞mod

[Minecraft][Mod开发]如何做一个告示牌点赞mod

2022-01-06 20:46:09 768

原创 [python][turtle]闪瞎眼的晶体管报时

import turtle as timport random as ranimport timeline=20pad=2t.pensize(3)t.up()t.ht()t.colormode(255)t.tracer(False)t.speed(0)t.setup(1024,700) def hor(x=0,y=0):#横(从左到右) t.pencolor(ran.randint(0,255),ran.randint(0,255),ran.randint(0,255)).

2021-12-03 11:00:13 868

原创 [Python turtle]不断变色的晶体管数字1~8

import turtle as timport random as ranimport timeline=40pad=5t.pensize(5)t.up()t.ht()t.colormode(255)t.tracer(False)t.speed(0)t.setup(1024,700)def hor(x=0,y=0):#横(从左到右) t.pencolor(ran.randint(0,255),ran.randint(0,255),ran.randint(0,255))..

2021-11-26 11:17:16 686

原创 Python彩色且会变色的数字八

import turtle as timport random as ranimport timeline=80pad=20t.pensize(20)t.up()t.ht()t.colormode(255)t.tracer(False)t.speed(0)def hor(x=0,y=0): t.pencolor(ran.randint(0,255),ran.randint(0,255),ran.randint(0,255)) t.goto(x+pad,y) t.

2021-11-26 10:03:45 623

原创 瞎写的游戏

import pygame,sysfrom pygame.locals import *pygame.init()width=650height=650screen=pygame.display.set_mode((width,height))pygame.display.set_caption('my game')fly = pygame.image.load("./img/fly.png")fly_rect = fly.get_rect()distance = [0, 0]fps .

2021-11-19 11:25:23 2833

原创 pygame入门实践( 一)

想要用pygame做游戏,首先得安装pygame。在命令行输入命令安装:pip install pygame如果下载过慢,可以通过换国内镜像源的方法解决,具体可参考PIP 更换国内安装源_佛系程序员-CSDN博客_pip换源pip国内的一些镜像  阿里云http://mirrors.aliyun.com/pypi/simple/  中国科技大学https://pypi.mirrors.ustc.edu.cn/simple/  豆瓣(douban)http://pypi.douban.com/si.

2021-11-19 09:42:02 2696

原创 Python海龟画个桃子

from time import *from turtle import *from math import *color("red")speed(0)hideturtle()tracer(False)def draw(angle,foot): home() #clear() right(angle) circle(foot,angle)i=1while True: angle=i*3 if angle>360: b.

2021-10-15 10:27:57 1452 1

原创 个人github主页

https://github.com/uicdbhttps://github.com/uicdb

2021-10-13 12:03:09 69

原创 如何绘制彩色的螺旋多边形

import turtle as t #导入turtle库t.pensize(2) #设置画笔的宽度(2)t.bgcolor("black") #背景颜色(黑色)def draw(colorArray): for i in range(120): #循环(画)120次 t.pencolor(colors[i % 4]) #画笔颜色 t.fd(i+(i*2)) #每次循环画线长度i+(i*2) t.left(90) #左.

2021-10-13 11:51:04 441 1

原创 Minecraft MOD 开发记录

前一阵子热衷于写mod,但查找了很多教程,对于自定义粒子并没有详细的描述,所以斗胆发布自己的代码,希望能和大家互相论证,谢谢您的来访。超级简单的自定义粒子 – txy的个人博客

2021-10-09 09:06:10 154

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除