Camera and editor improvements

This commit is contained in:
Ilya Laktyushin
2023-06-03 01:19:23 +04:00
parent 3df2d3cad5
commit ab69b9e982
48 changed files with 2154 additions and 557 deletions

View File

@@ -42,6 +42,7 @@ public struct Font {
public enum Weight {
case regular
case thin
case light
case medium
case semibold
@@ -59,6 +60,8 @@ public struct Font {
var weight: UIFont.Weight {
switch self {
case .thin:
return .thin
case .light:
return .light
case .medium:
@@ -78,6 +81,8 @@ public struct Font {
switch self {
case .regular:
return "regular"
case .thin:
return "thin"
case .light:
return "light"
case .medium: