This mini-project aims to recreate some basic processing functions in Unity3D, using a single file that you can just drop in the project.
This is made for Unity3D version 2020.2 or newer but is largely untested, the limit is because it uses some C# version 8 syntax.
- Download the
ProcessingLite.csfile. - Drag and drop the
ProcessingLite.csfile into your unity project.
(Don't add it to your scene! It just need to be in the project) - Change inherence from the class
MonoBehaviourtoProcessingLite.GP21.
(You will still have all MonoBehaviour functionality). - Use the supported commands, listed below, in the normal Unity
Startand/orUpdatefunctions.
Please note that the origin of the program will be different from processing. The camera is automatically moved so that origin is placed in the lower left corner of the screen.
The positions is measured in Unity Units and not pixels.
These changes have been made to make the future transition into Unity much easier.
All of the listed commands will not have full processing functionality Example: basic rectangles are supported but not rounded corners. The "basic" version of these commands should work.
Height, this returns the height of the screen in Unity-units.Width, this returns the width of the screen in Unity-units.
- Attributes
StrokeWeight(width), sets line width
- Vertex
BeginShape()EndShape()Vertex(x, y)
- 2D primitives
Circle(x, y, diameter)Ellipse(x, y, height, width)Line(x1, y1, x2, y2)Point(x, y)Quad(x1, y1, x2, y2, x3, y3, x4, y4)Rect(x1, y1, x2, y2)Square(x1, y1, size)Triangle(x1, y1, x2, y2, x3, y3)
Background(color)Fill(color)NoFill()NoStroke()Stroke(color)
Text(string, x, y), Only supports center align text for nowFontSize(size)
MouseXMouseY
Some features from Processing will not be ported over since the already exist in Unity, and the end goal is to move over to Unity.
- Data
- Input (MouseX, MouseY is supported)
- Transform
- Math and Constants
- PVector
- ProcessingLite creates objects in a way that's invalid and gives a warning in Unity, this can be ignored.
- Don't change scenes, it will break.
In Unity, create a class called Test. Change the inheritance from MonoBehaviour to ProcessingLite.GP21. Add the code below, run the program. If you see the word Hi on the screen, then it's working as intended.
using UnityEngine;
public class Test : ProcessingLite.GP21
{
void Start()
{
Line(4, 7, 4, 3);
Line(4, 5, 6, 5);
Line(6, 7, 6, 3);
Line(8, 5.5f, 8, 3);
Line(8, 7, 8, 6.8f);
}
}