Unity Tutorial: Scriptable Objects (Unity Basics 2022)

Опубликовано: 15 Июль 2022
на канале: Frank The Tank
1,287
28

This video is a bit of a departure from some of my previous videos - I wanted to potentially start to cover some basics of game development of there is interest for it. Lemme know in the comments or the discord what you think!

Here are the example scripts covered within the video here:
----
using System.Collections.Generic;
using UnityEngine;

[CreateAssetMenu(fileName = "GroupName", menuName = "ScriptableObjects/CreateIngredientGroup", order = 1)]
public class CreateIngredientGroup : ScriptableObject {
public string groupName;
public Sprite picture;
public Color groupTint;
}
---
using System.Collections.Generic;
using UnityEngine;

[CreateAssetMenu(fileName = "IngredientName", menuName = "ScriptableObjects/CreateIngredient", order = 1)]
public class CreateIngredient : ScriptableObject {
public string ingredientName;
public double baseCost;
public Sprite picture;
public CreateIngredientGroup ingredient_Group;
public double appealValue;
public double currentCost;
}
----

https://linktr.ee/FrankTankGaming


На этой странице сайта вы можете посмотреть видео онлайн Unity Tutorial: Scriptable Objects (Unity Basics 2022) длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Frank The Tank 15 Июль 2022, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 1,287 раз и оно понравилось 28 зрителям. Приятного просмотра!