1234567891011121314151617181920212223242526272829303132 |
- using UnityEngine;
- namespace SC.XR.Unity.Module_Keyboard
- {
- public class SCKeyboard2D : SCKeyboard
- {
- public SCKeyboard2D(Vector3 position, Quaternion rotation, Vector3 localScale, SCKeyboardEnum scKeyboardEnum, SCKeyboardType scKeyboardType)
- : base(position, rotation, localScale, scKeyboardEnum, scKeyboardType) { }
- protected override SCKeyboardEnum keyboardEnum { get { return SCKeyboardEnum.SCKeyboard2D; } }
- protected override string PrefabResourceName
- {
- get
- {
- return "Prefabs/Keyboard/2DKeyboard";
- }
- }
-
- public override string text
- {
- get
- {
- return _text;
- }
- set
- {
- _text = value;
- }
- }
- }
- }
|