Scratch To Unity: Sensing

This post provides a handy reference guide to go from Scratch’s “Sensing” category of code blocks to C# with Unity.

Code Blocks

Click on the picture of any of these Scratch code blocks to see how to write similar code statements in C#.

















[csharp]
void OnMouseOver()
{
// Code to run when mouse is touching
}
[/csharp]


The Physics engine in Unity is not based on pixel color. It is based on Collider shapes. You can mask collisions to control what collides with what, or wait for a collision and then check properties of the objects in the relevant callbacks:

[csharp]
void OnCollisionEnter(Collision collision)
{
// Check “color” of objects
}
[/csharp]


Assuming an object is in screen space coordinates, like a UI Element, then you could use something like this:

[csharp]
var distance = Vector3.Distance(transform.position, Input.mousePosition);
[/csharp]

See the “Motion” reference guide for examples of ray casting from the mouse position into the 3D world.


There is no built-in equivalent to this code block, but you can make your own. From the Hierarchy pane click the “Create” button and choose “UI” -> “Input Field”. You can add a handler method to the “On End Edit” event either in the Inspector or in code.

To work with an Input Field in code you must add the using declaration:

[csharp]
using UnityEngine.UI;
[/csharp]

Here is an example of attaching a handler to the “On End Edit” event:

[csharp]
private void Start()
{
var input = GetComponent();
input.onEndEdit.AddListener(OnEndEdit);
}

void OnEndEdit(string result)
{
Debug.Log(result);
}
[/csharp]


[csharp]
if (Input.GetKey(KeyCode.Space))
{
// Code to run when key is pressed
}
[/csharp]


[csharp]
if (Input.GetMouseButton(0))
{
// Code to run when mouse button is pressed
Debug.Log(Time.timeSinceLevelLoad.ToString());
}
[/csharp]


[csharp]
var mouseX = Input.mousePosition.x;
[/csharp]


[csharp]
var mouseY = Input.mousePosition.y;
[/csharp]


Unity does not provide a built-in solution for dragging objects with the mouse. You can create your own by detecting mouse events and moving objects based on “Input.mousePosition”. If you create a component to handle dragging, then you can disable dragging by disabling the component.


In Unity, there is no exposed “loudness” variable. You have “volume” on “AudioSource” components, but that is how loud to play the clip as a whole, not how loud is the sound that is actually being heard. In other words, imagine you have turned the volume knob of a speaker all the way up. When sound plays, it will be loud, but there may be moments between sounds where there is nothing to hear.

In order to analyze the loudness of what is actually playing, you can sample your audio data. Here is a post on the Unity Answers forum that discusses this topic in detail, complete with code.



Unity does not have a built-in timer. You can track the passing of time using the “Time” class. See here. A simple timer might look something like this.

[csharp]
float timer = 10f;

void Update()
{
if (timer > 0)
{
timer -= Time.deltaTime;
if (timer <= 0) { Debug.Log("Time's up!"); } } } [/csharp]


Backdrops are not special entities in Unity. You could create one as a Sprite just like you would create any other sprite. If you had a collection of backgrounds to use, then you could track the index of the background when you assign it on your own.


To work with date data types, you will need to add a using declaration:

[csharp]
using System;
[/csharp]

You can then obtain the current year like this:

[csharp]
var currentDate = DateTime.Now;
var year = currentDate.Year;
[/csharp]


To work with date data types, you will need to add a using declaration:

[csharp]
using System;
[/csharp]

You can then obtain the number of days since 2000 like this:

[csharp]
var oldDate = new DateTime(2000, 1, 1);
var currentDate = DateTime.Now;
var totalDays = (currentDate – oldDate).TotalDays;
[/csharp]


There is no equivalent to a username built-in to Unity. This is an advanced task that requires a server to implement. You might wish to pursue 3rd party libraries for this purpose such as Firebase.

Summary

This should cover all of the code blocks in Scratch’s “Sensing” category. If you have any questions about this reference guide feel free to ask below.

If you find value in my blog, you can support its continued development by becoming my patron. Visit my Patreon page here. Thanks!

Leave a Reply

Your email address will not be published. Required fields are marked *