凉鞋的 Godot 笔记 201. 第三轮循环:引入变量

news/2024/12/28 22:53:40/

201. 第三轮循环:引入变量

在这一篇,我们进行第三轮 编辑-测试 循环。

在之前我们编写了 输出 Hello Godot 的脚本,如下:

extends Node# Called when the node enters the scene tree for the first time.
func _ready():print("Hello Godot")pass # Replace with function body.# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):pass

如果我们要输出 10 次 Hello Godot 该怎么办呢?

答案很简单,就是复制十行 print(“Hello Godot”),代码如下:

extends Node# Called when the node enters the scene tree for the first time.
func _ready():print("Hello Godot")print("Hello Godot")print("Hello Godot")print("Hello Godot")print("Hello Godot")print("Hello Godot")print("Hello Godot")print("Hello Godot")print("Hello Godot")print("Hello Godot")pass # Replace with function body.# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):pass

这样当我们运行次场景后,结果如下:

image-20231002160704307

总共输出了十次 Hello Godot。

此时我突然想要把输出十次 Hello Godot 改成输出十次 Hello GDScript。

那么最简单的方式,就是直接修改代码,如下:

extends Node# Called when the node enters the scene tree for the first time.
func _ready():print("Hello GDScript")print("Hello GDScript")print("Hello GDScript")print("Hello GDScript")print("Hello GDScript")print("Hello GDScript")print("Hello GDScript")print("Hello GDScript")print("Hello GDScript")print("Hello GDScript")pass # Replace with function body.# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):pass

运行之后结果如下:

image-20231002160952674

但是这样太不优雅了,我们需要复制粘贴十次,如果我们有 100 个甚至 1000 个 Hello Godot,那么我们可能需要复制粘贴很多次,或者使用代码编辑器所提供的查找/替换功能完成。

比较优雅的方式就是引入一个变量,代码如下所示:

extends Node# Called when the node enters the scene tree for the first time.
func _ready():var text_to_print = "Hello GDScript"print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)pass # Replace with function body.# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):pass

这样当我们想要输出十次 Hello World 那么我们只需要修改变量的值即可,如下所示:

extends Node# Called when the node enters the scene tree for the first time.
func _ready():var text_to_print = "Hello World"print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)print(text_to_print)pass # Replace with function body.# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):pass

这样非常优雅。

我们在代码中新引入的 text_to_print 叫做变量。

变量可以存储一个值,然后在接下来可以通过这个变量来代替具体的值。

比如 text_to_print 是 “Hello World”,那么接下来的每一句 print(text_to_print) 其实都是 print(“Hello World”)。

变量给编程带来了巨大的便利。

当然,变量是每一个程序语言都有的,而每一个游戏引擎不管是提供专业脚本支持还是可视化脚本支持都会提供变量的使用,所以变量也是通识部分的内容,在接下来的篇幅里,笔者会好好介绍变量,以及 Godot 的 GDScript 中的变量使用。

这一篇的内容就这些,我们下一篇再见,拜拜。

知识地图

image-20231002162151655

转载请注明 凉鞋的笔记


http://www.ppmy.cn/news/1159263.html

相关文章

C++项目实战——基于多设计模式下的同步异步日志系统-⑫-日志宏全局接口设计(代理模式)

文章目录 专栏导读日志宏&全局接口设计全局接口测试项目目录结构整理示例代码拓展示例代码 专栏导读 🌸作者简介:花想云 ,在读本科生一枚,C/C领域新星创作者,新星计划导师,阿里云专家博主,C…

潮玩游戏潮玩宇宙大逃杀游戏

近年来,随着游戏行业的蓬勃发展和科技的不断进步,宇宙大逃杀游戏已成为众多游戏玩家的热门选择。这种游戏以生存和竞争为核心,玩家们在虚拟宇宙中展开殊死搏斗,争取成为最后的胜利者。如今,一款全新的潮玩宇宙大逃杀游…

软考系统架构设计师考试冲刺攻略

系统架构冲刺攻略 上篇为综合知识,介绍了系统架构设计师应熟练掌握的基本知识,主要包括绪论、计算机系统、信息系统、信息安全技术、软件工程、数据库设计、系统架构设计、系统质量属性与架构评估、软件可靠性、软件架构的演化和维护、未来信息综合技术等…

Echarts(1)

Echarts官方文档----快速上手 - Handbook - Apache ECharts 1.1ECharts的快速上手 ECharts 的入门使用特别简单, 5分钟就能够上手. 他大体分为这几个步骤 步骤1:引入 echarts.js 文件 该文件获取方式可通过:在 https://www.jsdelivr.com/package/npm…

java入参为对象的(非基本数据类型int/float等)修改属性会影响原始对象

ApiOperation("登录接口")RequestMapping(value "/login", method RequestMethod.POST)public Result<JSONObject> login(RequestBody SysLoginModel sysLoginModel){Result<JSONObject> result new Result<JSONObject>();// by wang…

57 最长递增子序列

最长递增子序列 题解1 DP O ( n 2 ) O(n^{2}) O(n2)题解2 贪心二分搜索&#xff08;ref. from Leetcode&#xff09; O ( n l o g ( n ) ) O(n log(n)) O(nlog(n))鼓掌&#xff01;&#xff01;这个思想好棒 给你一个整数数组 nums &#xff0c;找到其中 最长严格递增子序列…

行业追踪,2023-10-17

自动复盘 2023-10-17 凡所有相&#xff0c;皆是虚妄。若见诸相非相&#xff0c;即见如来。 k 线图是最好的老师&#xff0c;每天持续发布板块的rps排名&#xff0c;追踪板块&#xff0c;板块来开仓&#xff0c;板块去清仓&#xff0c;丢弃自以为是的想法&#xff0c;板块去留让…

如何在Python中更新代码但还想保留原有代码

Python作为一门功能强大的编程语言&#xff0c;为开发者提供了许多方便的方法来更新代码并且还能保留原有代码。在本文中&#xff0c;我们将从多个方面来详细阐述如何在Python中更新代码但还想保留原有代码。 一、使用函数参数 许多Python程序员通过将函数的参数作为字典或者…