Wednesday, May 29, 2019

5/29/19

DO NOW:
Turn-in Permission Slips (Movies-Due Today)
OBJECTIVES:
  1. Graduation Video Planning/Filming - Meet with class, Schedule Filming, Update chart, Upload Video, Edit
  2. Camera Following
  3. Insert Crate (10:54)
  4. Unity Asset Store
  5. adding collectible objects
  6. Win Screen

4 comments:

  1. using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;

    public class Rotator : MonoBehaviour {

    // Use this for initialization
    void Start () {

    }

    // Update is called once per frame
    void Update () {
    transform.Rotate(new Vector3(15, 30, 45) * Time.deltaTime);
    }
    }

    ReplyDelete
  2. This comment has been removed by the author.

    ReplyDelete
  3. using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;

    public class Player : MonoBehaviour {

    // Use this for initialization
    void Start () {

    }

    // Update is called once per frame
    void Update () {

    }

    void OnTriggerEnter(Collider other) {
    if (other.gameObject.CompareTag("PickUp")) {
    other.gameObject.SetActive(false);
    }
    }
    }

    ReplyDelete