This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class BoundryFinder : MonoBehaviour | |
{ | |
public float xMin, xMax, zMin, zMax; | |
void Start() | |
{ | |
GameObject sceneCamObj = GameObject.Find( "Main Camera" ); | |
Camera mainCam = sceneCamObj.GetComponent<Camera> (); | |
Transform camPos = mainCam.transform; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This function will return a list of categories used by a group of posts ids | |
* | |
* @param string $taxonomy The name of the taxonomy to search for | |
* @param array $objects_id The list of posts IDs to check against | |
* @param integer $child_of A parent category to limit the search on | |
* | |
* @return array A list of terms |