Unity Tutorial: Roll A Ball - Part 3: Collectible Pickups

Поделиться
HTML-код
  • Опубликовано: 27 окт 2024

Комментарии • 5

  • @Avakadoman1995
    @Avakadoman1995 27 дней назад +1

    Thank god for this video. I'm doing the Unity tutorials and for whatever reason the collectibles tutorial never explains tags or triggers, like an entire section is just missing.

    • @Digestible
      @Digestible  26 дней назад +1

      I'm glad it helped! this is heavily based on the unity ones but i tried to condense it a bit - those got awfully long! (also not good if part was missing!)

  • @rowelf
    @rowelf Год назад +1

    thsi is the best tutorial

  • @callanmccray3276
    @callanmccray3276 6 месяцев назад +1

    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    public class rotator : MonoBehaviour
    {

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

    {
    transform.Rotate(new Vector3(15, 30, 45) * Time.deltaTime);
    }
    }