摘要: ####################################### # CONSTANTS ####################################### DIGITS = '0123456789' #################################### 阅读全文
posted @ 2024-09-07 00:52 eva1024 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 2024年8月30日16:43:42 阅读全文
posted @ 2024-08-30 16:46 eva1024 阅读(6) 评论(0) 推荐(0) 编辑
摘要: shader_type canvas_item; uniform float outline_width = 1.0; uniform vec4 outline_color: source_color = vec4(1,0,0,1); void fragment() { vec2 uv = UV; 阅读全文
posted @ 2024-11-19 12:18 eva1024 阅读(1) 评论(0) 推荐(0) 编辑
摘要: shader_type canvas_item; void fragment() { vec4 color = texture(TEXTURE, UV); float gray = dot(color.rgb, vec3(0.299, 0.587, 0.114)); COLOR = vec4(vec 阅读全文
posted @ 2024-11-09 16:30 eva1024 阅读(0) 评论(0) 推荐(0) 编辑
摘要: python -m pip install scons 阅读全文
posted @ 2024-11-07 19:11 eva1024 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 项目管理器 DisplayServer::get_singleton()->window_set_title("SCS Engine V0.2"); 重置图标缓存 如果你的图标没有正确显示,在 Windows 10 中,请尝试清理图标缓存。实现方法是打开运行对话框并输入 ie4uinit.exe - 阅读全文
posted @ 2024-11-06 20:31 eva1024 阅读(3) 评论(0) 推荐(0) 编辑
摘要: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple mkdocs 主题安装 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple mkdocs-material 阅读全文
posted @ 2024-11-06 19:31 eva1024 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 以下是在 MkDocs 中创建多级导航的方法: 在 mkdocs.yml 中配置导航结构: nav: 首页: index.md 指南: 快速入门: guide/getting-started.md 基础概念: guide/concepts.md 进阶教程: 配置: guide/advanced/co 阅读全文
posted @ 2024-11-01 14:27 eva1024 阅读(8) 评论(0) 推荐(0) 编辑
摘要: shader_type canvas_item; void vertex() { // Called for every vertex the material is visible on. } void fragment() { COLOR = texture(TEXTURE,UV); float 阅读全文
posted @ 2024-10-30 18:08 eva1024 阅读(0) 评论(0) 推荐(0) 编辑
摘要: extends Button # Called when the node enters the scene tree for the first time. func _ready(): pass # Replace with function body. # Called every frame 阅读全文
posted @ 2024-10-29 21:02 eva1024 阅读(4) 评论(0) 推荐(0) 编辑
摘要: extends Sprite2D func _ready(): # 设置初始颜色为红色 modulate = Color(1, 0, 0) # 红色 # 创建并配置 Tween var tween = create_tween() # 目标颜色为蓝色 var target_color = Color 阅读全文
posted @ 2024-10-29 06:28 eva1024 阅读(3) 评论(0) 推荐(0) 编辑
摘要: var pck_path = "mod.pck" var sprite_frames_path = "res://tres/main_mod.tres" if ProjectSettings.load_resource_pack(pck_path): print("PCK 加载成功") # 从 PC 阅读全文
posted @ 2024-10-20 21:12 eva1024 阅读(7) 评论(0) 推荐(0) 编辑