Advertisement
Guest User

Penrose generator

a guest
Jul 18th, 2022
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.11 KB | None | 0 0
  1. using UnityEngine;
  2. //from tutorial at https://youtu.be/7LlZeBpabG8
  3. public class PenroseGenerator : MonoBehaviour
  4. {
  5.     [SerializeField] GameObject cubePrefab;
  6.     [SerializeField] int desiredCubesPerSide;
  7.  
  8.     void Start()
  9.     {
  10.         GenerateTriangle(desiredCubesPerSide);
  11.     }
  12.  
  13.     //works for cubesPerside 4+
  14.     void GenerateTriangle(int cubesPerSide)
  15.     {
  16.         Vector3 initialPosition = Vector3.zero;
  17.  
  18.         //generate first cube at origin
  19.         GameObject firstCube = Instantiate(cubePrefab,initialPosition,Quaternion.identity);
  20.  
  21.         //keep track of last cubes instantiated
  22.         GameObject lastCubeOnX = firstCube;
  23.         GameObject lastCubeOnZ = firstCube;
  24.        
  25.         //generates cube rows toward x and -z
  26.         for(int i = 1; i<cubesPerSide; i++)
  27.         {
  28.             //x
  29.             Vector3 currentXposition = initialPosition;
  30.             currentXposition.x = i;
  31.             lastCubeOnX = Instantiate(cubePrefab,currentXposition,Quaternion.identity);
  32.  
  33.             //z
  34.             Vector3 currentZposition = initialPosition;
  35.             currentZposition.z = -i;
  36.             lastCubeOnZ = Instantiate(cubePrefab,currentZposition,Quaternion.identity);
  37.         }
  38.  
  39.         //keeps track of cube at bottom of column
  40.         GameObject lastCubeOnY = lastCubeOnX;
  41.  
  42.         //generate column downwards from lastCubeOnX
  43.         //will end up (visually) above lastCubeOnZ
  44.         for(int i = 1; i<cubesPerSide-1; i++)
  45.         {
  46.             Vector3 currentPosition = lastCubeOnX.transform.position;
  47.             currentPosition.y = -i;
  48.             lastCubeOnY = Instantiate(cubePrefab,currentPosition,Quaternion.identity);
  49.         }
  50.  
  51.         //create a copy of last cube to place on top of the lastCubeOnZ
  52.         int offset = cubesPerSide-1;
  53.         Vector3 matchingPosition = lastCubeOnY.transform.position + new Vector3(-offset,offset,-offset);
  54.         GameObject lastCubeCopy = Instantiate(lastCubeOnY, matchingPosition,Quaternion.identity);
  55.  
  56.         //visually remove top face on the copy
  57.         lastCubeCopy.transform.GetChild(0).gameObject.SetActive(false);
  58.     }
  59.  
  60. }
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement