乐高 斜面砖_使用LEGOⓇMicrogame创建您的第一个游戏,一砖一瓦

乐高 斜面砖

New users can start creating in Unity faster than ever with the LEGO Microgame (currently in beta), our most recent addition to the Microgames series.

新用户可以通过我们最新添加的LEGO Microgame(目前处于测试版)开始以更快的速度在Unity中进行创建。

Unity’s Microgames are guided experiences designed to get new users working in the Editor quickly and easily. They’re designed to help you move swiftly from opening your first project to publishing your first game in about 45 minutes. Follow in-Editor tutorials to better understand how everything clicks together, while making your own creative decisions and personalizing along the way. You can access the Microgames via the Unity Hub (v2.4.0).

Unity的微游戏 是有指导性的体验,旨在让新用户快速轻松地在Editor中工作。 它们旨在帮助您在大约45分钟内从打开第一个项目到发布第一个游戏的Swift转变。 遵循编辑器中的教程,以更好地了解所有内容如何相互点击,同时做出自己的创意决定并一路个性化。 您可以通过 Unity Hub (v2.4.0) 访问Microgames 。

Our latest Microgame release allows you to discover a joyful experience building with virtual LEGO bricks as you learn how to use Unity’s fundamental systems. Create and play your first game then publish it to Unity’s hosting site for user-generated games, where you can show off and share your new creation with friends and the larger Unity community.

我们最新的Microgame版本使您在学习如何使用Unity的基本系统时,发现使用虚拟乐高积木建造的愉悦体验。 创建并玩您的第一款游戏,然后将其发布到Unity的 用户生成游戏托管站点 ,您可以在此炫耀并与朋友和更大的Unity社区分享您的新作品。

In partnership with LEGO Games, Unity has brought the LEGO Group’s System in Play and LEGO minifigures into the Unity Editor for the very first time. 

LEGO Games 合作 ,Unity首次将LEGO Group的 Play in System 和LEGO人偶带入Unity Editor。

For anyone who’s ever loved building with LEGO bricks, this Microgame is the perfect place to start your Unity creative journey. Gameplay behaviors and actions have been embedded into the virtual bricks, allowing you to build your interactive project, brick by glossy brick.

对于任何曾经喜欢用乐高积木建造的人来说,这款Microgame是开始您的Unity创意之旅的理想之地。 游戏玩法行为和动作已嵌入到虚拟积木中,使您可以逐个积木构建交互式项目。

入门 (Getting started)

If you’re new to Unity, you can begin here – it’s as easy as downloading the Unity Hub, launching the Editor, and opening the LEGO Microgame project to follow step-by-step tutorials that guide you through the creative process. 

如果您不熟悉Unity,则可以从 这里 开始 –就像下载Unity Hub,启动编辑器和打开LEGO Microgame项目一样简单,以按照逐步的教程进行操作,以指导您完成创作过程。

Already have Unity (2019.4 LTS) installed? Just launch the Unity Hub (v2.4.0) and start a New project to load the LEGO Microgame.

已经安装了Unity(2019.4 LTS)吗? 只需启动Unity Hub(v2.4.0)并启动一个New项目即可加载LEGO Microgame。



我们希望您的反馈! (We want your feedback!)

Your comments are vital to helping us improve the LEGO Microgame experience for others, so tell us what you think in our form, and stay tuned for more exciting Microgame news to help level up your Unity skills. We can’t wait to see what you create!

您的意见对帮助我们改善他人的LEGO Microgame体验至关重要,因此请 告诉我们您对我们的看法 ,并继续关注更多令人兴奋的Microgame新闻,以帮助您提高Unity技能。 我们迫不及待想看到您创建的内容!

翻译自: https://blogs.unity3d.com/2020/09/09/create-your-first-game-brick-by-virtual-brick-with-the-lego-microgame/

乐高 斜面砖

要想控制乐高机器人的基本动作,比如前进、后退和旋转,可以通过Scratch编程实现。Scratch的编程块通过拖拽和组合的方式,使得编程变得直观和简单。以一个乐高机器人的前进动作为例,我们可以按照以下步骤进行编程: 参考资源链接:[乐高机器人编程探索:Scratch与WeDo实战](https://wenku.csdn.net/doc/63ouhqg3mf?spm=1055.2569.3001.10343) 1. 首先,确保乐高机器人已经与计算机连接,且正确安装了Scratch和相应的乐高机器人软件。 2. 打开Scratch软件,并从“事件”类别中选择“当绿旗被点击”开始编写程序。 3. 选择“控制”类别中的“重复”循环块,设置循环次数来控制机器人前进的时间。 4. 在“运动”类别中,找到“移动(步数)”块,设置合适的步数让机器人前进。 5. 如需要,还可以使用“控制”类别中的“等待(秒)”块来暂停一段时间。 6. 为了确保乐高机器人能够听到指令,需要从“事件”类别中添加“当绿旗被点击”块。 以下是一个简单的Scratch代码块示例,演示如何让乐高机器人前进10步: 当绿旗被点击 重复(4)次 移动(10)步 等待(1)秒 这个程序会使得乐高机器人连续前进4次,每次前进10步,然后每步之间暂停1秒。通过改变“移动(步数)”块中的数值和“重复”循环的次数,可以控制机器人前进的不同距离和次数。 通过实践这样的基础项目,你可以对Scratch编程有一个直观的认识,同时也能够理解如何将编程逻辑应用到乐高机器人控制上。随着技术的掌握,你将能够创建更复杂的动作和项目。推荐查看《乐高机器人编程探索:Scratch与WeDo实战》这本书,它详细讲解了Scratch编程的各个方面,并提供了丰富的实际操作案例,帮助你进一步掌握编程技能和乐高机器人的控制。 参考资源链接:[乐高机器人编程探索:Scratch与WeDo实战](https://wenku.csdn.net/doc/63ouhqg3mf?spm=1055.2569.3001.10343)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值