您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
28 行
676 B
28 行
676 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
using UnityEngine.Localization.Components;
|
|
|
|
|
|
public class InspectorDescriptionFiller : MonoBehaviour
|
|
{
|
|
[SerializeField] private LocalizeStringEvent _textDescription = default;
|
|
|
|
[SerializeField] private LocalizeStringEvent _textName = default;
|
|
|
|
public void FillDescription(Item itemToInspect)
|
|
{
|
|
|
|
_textName.StringReference = itemToInspect.Name;
|
|
_textName.StringReference.Arguments = new[] { new { Purpose = 0, Amount = 1 } };
|
|
_textDescription.StringReference = itemToInspect.Description;
|
|
|
|
_textName.gameObject.SetActive(true);
|
|
_textDescription.gameObject.SetActive(true);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|