18 lines
242 B
C#
18 lines
242 B
C#
namespace VRKeyboard.Utils
|
|
{
|
|
public class Alphabet : Key
|
|
{
|
|
public override void CapsLock(bool isUppercase)
|
|
{
|
|
if (isUppercase)
|
|
{
|
|
key.text = key.text.ToUpper();
|
|
}
|
|
else
|
|
{
|
|
key.text = key.text.ToLower();
|
|
}
|
|
}
|
|
}
|
|
}
|