CullingGroup

using UnityEngine;

public class CullingGroupBehaviour : MonoBehaviour
{

    private CullingGroup cullingGroup;
    private BoundingSphere[] bounds;

    Transform[] targets;
    public Transform ReferencePoint;

    void Start()
    {
        // All the objects that have a sphere tag
        var gobjs = GameObject.FindGameObjectsWithTag("Sphere");
        targets = new Transform[gobjs.Length];
        for(int i = 0; i < gobjs.Length; i++)
        {
            targets[i] = gobjs[i].transform;
        }

        cullingGroup = new CullingGroup();

        cullingGroup.targetCamera = Camera.main;
        // Will automatically track the transform
        cullingGroup.SetDistanceReferencePoint(transform);
        // The distance points when the event will trigger
        cullingGroup.SetBoundingDistances(new float[] { 25.0f });
        // Creating Boundingspheres
        bounds = new BoundingSphere[targets.Length];
        for (int i = 0; i < bounds.Length; i++)
        {
            bounds[i].radius = 1.5f;
        }
        // Assigning the Bounding spheres
        cullingGroup.SetBoundingSpheres(bounds);
        // if not set it will use all of the array elements(so below code is redundant)
        cullingGroup.SetBoundingSphereCount(targets.Length);
        // Assigning an event when the distance changes
        cullingGroup.onStateChanged = OnChange;
    }

    void Update()
    {
        for (int i = 0; i < bounds.Length; i++)
        {
            bounds[i].position = targets[i].position;
        }
    }

    void OnDestroy()
    {
        cullingGroup.Dispose();
        cullingGroup = null;
    }

    void OnChange(CullingGroupEvent ev)
    {
        if (ev.currentDistance > 0)
        {
            targets[ev.index].gameObject.GetComponent<Renderer>().material.color = Color.green;
        }
        else
        {
            targets[ev.index].gameObject.GetComponent<Renderer>().material.color = Color.red;
        }
    }
}

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source