<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[3D - A UFO (Difficulty: 1)]]></title><description><![CDATA[<p dir="auto"> </p>
<h2><a class="anchor-offset" name="key-topics-covered"></a>Key Topics Covered</h2>
<ul>
<li><a href="/topic/5/initializing-a-3d-scene">Initializing 3D scenes</a></li>
<li><a href="/topic/117/using-spheres">Using spheres</a></li>
<li><a href="/topic/147/update-object-textures">Updating textures</a></li>
</ul>
<p dir="auto"> <br />
 </p>
<h2><a class="anchor-offset" name="introduction"></a>Introduction</h2>
<p dir="auto">In this tutorial, we’ll build a UFO with 3 sphere shapes:</p>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/a60fd49f-a8b8-403a-a67b-9d70533bd242.gif" width="470" style="border-radius:5px;border:1px solid #29622d" /></p>
<p dir="auto"> <br />
 </p>
<h2><a class="anchor-offset" name="step-1-initialize-the-blue-sky-scene"></a>Step 1 - Initialize the “Blue Sky” Scene</h2>
<p dir="auto">Please create a new project, and use the “<a href="/topic/5/initializing-a-3d-scene">initialize 3D scene</a>” block to load the “Blue Sky” scene. This scene is pretty fast to load. It contains a blue sky with clouds with an ocean below. Please also add the 3D axis to show the 3 dimensions.</p>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/7361f295-3dbe-4f72-9767-589e54df1e36.png" width="400" /></p>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/7c91befa-bc17-437e-8bdd-d9cd168af432.gif" width="480" /></p>
<p dir="auto"> <br />
 </p>
<h2><a class="anchor-offset" name="step-2-add-the-first-sphere"></a>Step 2 - Add the first sphere</h2>
<p dir="auto">Now let’s <a href="/topic/117/using-spheres">add a big flat sphere</a> to serve as the main body of the UFO. The X and Y sizes should be a large number like 500, and the Z size (the height) should be much smaller, such as 50.</p>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/c3753254-c06f-4301-b7d3-018e44a19999.gif" width="470" style="border-radius:5px;border:1px solid #29622d" /><br />
 <br />
Here is the new block to be added. Note that the “sides” number is set to 64 to make the large sphere look smoother.</p>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/cebf2c3f-d8f3-483a-8d7f-d60b42c66b5f.png" width="700" style="filter:drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.5))" /></p>
<p dir="auto"> <br />
 </p>
<h2><a class="anchor-offset" name="step-3-update-texture"></a>Step 3 - Update Texture</h2>
<p dir="auto">To make the UFO body look more real, we can apply a texture to it. If you search by the keyword “space”, you will find many good textures to choose from. You can also change the repeat count to make the pattern repeat more times.</p>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/c0d6bb14-82f4-49c0-8905-6dabf2f84e37.gif" width="1000" style="border-radius:5px;border:1px solid #29622d" /></p>
<p dir="auto"> <br />
 </p>
<h2><a class="anchor-offset" name="step-4-the-second-sphere"></a>Step 4 - The Second Sphere</h2>
<p dir="auto">Next, let’s add another sphere that’s smaller but taller, and also with a different texture. Can you try to add it? What values should you use for the x/y/z sizes?</p>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/a185df32-4e4d-4856-89c2-1f829b7ccd8f.gif" width="470" style="border-radius:5px;border:1px solid #29622d" /><br />
 <br />
Here is how you can add the second sphere by duplication:</p>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/ad3b4583-231e-4408-a712-8b123a8fb69c.gif" width="1000" style="border-radius:5px;border:1px solid #29622d" /></p>
<p dir="auto"> <br />
 </p>
<h2><a class="anchor-offset" name="step-5-the-third-sphere-for-the-control-room"></a>Step 5 - The Third Sphere for the Control Room</h2>
<p dir="auto">The last sphere would be even smaller and taller. You can make it semi-transparent as well when you specify the color.</p>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/a32fb133-68b1-4577-b454-648ff087ce07.gif" width="470" style="border-radius:5px;border:1px solid #29622d" /><br />
 <br />
Here is the new block you need to add:</p>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/b0f938d9-0536-4755-a4c2-c72ec80091a7.png" width="700" /></p>
<p dir="auto"> <br />
 </p>
<h2><a class="anchor-offset" name="step-6-cut-the-third-sphere-in-half"></a>Step 6 - Cut the Third Sphere in Half</h2>
<p dir="auto">Suppose we want the control room to be only on the top half of the UFO. We can use the “slice” input to get a half sphere. Please try to produce a result like this:</p>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/a60fd49f-a8b8-403a-a67b-9d70533bd242.gif" width="470" style="border-radius:5px;border:1px solid #29622d" /><br />
 <br />
As shown, when we change the sphere to a half-sphere, it is facing the wrong direction, so we need to rotate it as well:</p>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/fc4dcde7-972a-4cf2-b101-c0c516b61576.gif" width="1000" style="border-radius:5px;border:1px solid #29622d" /></p>
<p dir="auto"> <br />
Here is the complete program for your reference:</p>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/212370f9-cfb6-4d04-aab4-e1346419f7e1.png" alt="0056e1ee-0364-4455-9110-cb11d8518910-image.png" class=" img-responsive img-markdown" width="1027" height="606" /></p>
<p dir="auto"> <br />
 </p>
<h2><a class="anchor-offset" name="creative-ideas"></a>Creative Ideas</h2>
<p dir="auto">There are many ways you can enhance this UFO. Here are some ideas for your inspiration:</p>
<ol>
<li>
<p dir="auto"><strong>Different colors/textures</strong> for the different parts of the UFO</p>
</li>
<li>
<p dir="auto"><strong>Open up the second sphere</strong>: currently the second sphere shows up through the transparent cover. It would be nice to open it up like this:</p>
</li>
</ol>
<p dir="auto"><img src="https://cdncreaticodecom.b-cdn.net/scratch-gui-projects/forum/427ae0b8-acf0-475c-b7b2-e6a4e931142d.gif" width="470" style="margin-left:40px;border-radius:5px;border:1px solid #29622d" /></p>
<ol start="3">
<li><strong>Add Other Objects</strong>: you can add some other objects to the scene, such as <a href="/topic/11/loading-an-avatar-into-a-scene">aliens</a>, lights, hatch doors, landing legs, etc.</li>
</ol>
]]></description><link>https://forum.creaticode.com/topic/324/3d-a-ufo-difficulty-1</link><generator>RSS for Node</generator><lastBuildDate>Thu, 23 Apr 2026 00:12:06 GMT</lastBuildDate><atom:link href="https://forum.creaticode.com/topic/324.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 17 Jul 2022 15:47:27 GMT</pubDate><ttl>60</ttl></channel></rss>