Welcome to GEMENTAR TOUR PUO V2 Development Documentation. Enjoy your stay!

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
wiki:football_explore [2022/08/01 16:56] – [State Machine] adminwiki:football_explore [2022/08/01 17:29] (current) – [Football Minigame] admin
Line 1: Line 1:
 + --- //[[admin@puov2.gementar.com|Hilmi]] 2022/08/01 17:28//
 +
 +====== Football Minigame ======
 +
 +{{ :wiki:fsmm.gif?nolink |}}
 +
 +<file | Finsihed Minigame > 
 +This is the finished Minigame for football side minigame in Explore Module!
 +</file>
 ====== Prototyping ====== ====== Prototyping ======
  
Line 6: Line 15:
  
  
-<file |  +<file | Prototyping 
 This is the prototype scene of football side minigame, The target of this side minigame people can interact and play it without trying to score. This is the prototype scene of football side minigame, The target of this side minigame people can interact and play it without trying to score.
 This time I'll using auto/modular cone placement. This time I'll using auto/modular cone placement.
Line 142: Line 151:
  
 </code> </code>
- 
-<code CSharp | Full Script> 
- private void Start() => createCone(); 
- 
-    public void playParticle() => particle.Play(); 
- 
-    public void footBallDetected() => ballDetected = true; 
- 
-    public void footBallLossDetection() 
-    { 
-        ballDetected = false; 
-    } 
- 
-    private void OnDrawGizmos() 
-    { 
-        Transform cone = coneGizmo.transform; 
- 
-        Gizmos.color = Color.red; 
-        Gizmos.DrawWireCube(cone.transform.position, new Vector3(rangeX, 3, rangeZ)); 
- 
- 
-        //float x = UnityEngine.Random.Range(cone.transform.position.x, cone.transform.position.x); 
-        //float z = UnityEngine.Random.Range(cone.transform.position.z, cone.transform.position.z); 
- 
-        //float randX = UnityEngine.Random.Range(-rangeX, rangeX); 
-        //float randZ = UnityEngine.Random.Range(-rangeZ, rangeZ); 
- 
-        //Gizmos.color = Color.blue; 
-        //float xZ = cone.transform.position.x + (int)Math.Round((decimal)randX) / 2; 
-        //float zZ = cone.transform.position.z + (int)Math.Round((decimal)randZ) / 2; 
-        //Gizmos.DrawWireCube(new Vector3(xZ, cone.transform.position.y, zZ), new Vector3(1, 1, 1)); 
-    } 
- 
-    public void resetBall() 
-    { 
-        ball.transform.position = ballResetPosition.position; 
- 
-        //Stop Moving/Translating 
-        ball.GetComponent<Rigidbody>().velocity = Vector3.zero; 
- 
-        //Stop rotating 
-        ball.GetComponent<Rigidbody>().angularVelocity = Vector3.zero; 
- 
-        createCone(); 
-    } 
- 
-    public bool getFootBallStatus() 
-    { 
-        return ballDetected; 
-    } 
- 
-    private List<GameObject> newItemList = new List<GameObject>(); 
-    [Button] 
-    public void createCone() 
-    { 
-        if (newItemList != null) 
-        { 
-            foreach (var item in newItemList) 
-            { 
-                Destroy(item); 
-            } 
-        } 
- 
-        for (int i = 0; i < 6; i++) 
-        { 
-            Transform cone = coneGizmo.transform; 
- 
-            float randX = UnityEngine.Random.Range(-rangeX, rangeX); 
-            float randZ = UnityEngine.Random.Range(-rangeZ, rangeZ); 
- 
-            float x = cone.transform.position.x + (int)Math.Round((decimal)randX) / 2; 
-            float z = cone.transform.position.z + (int)Math.Round((decimal)randZ) / 2; 
- 
-            var newPos = new Vector3(x, cone.transform.position.y, z); 
- 
-            var newItem = Instantiate(conePrefab, this.gameObject.transform); 
-            newItem.transform.SetParent(cone); 
-            newItem.transform.position = newPos; 
- 
-            newItemList.Add(newItem); 
-        } 
-    } 
-</code> 
- 

QR Code
QR Code wiki:football_explore (generated for current page)
Hello World!
DokuWiki with monobook... rules!