Skip to content
This repository was archived by the owner on Aug 20, 2024. It is now read-only.

Commit ee0f3f0

Browse files
committed
Cleaned up comments.
1 parent 99b1093 commit ee0f3f0

File tree

5 files changed

+4
-12
lines changed

5 files changed

+4
-12
lines changed

src/SignsInternal/PluginGui/Color.lua

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
local choices = {
2-
3-
-- Every font in existance, needs a better loop system for if new font is made. Much as a proof of concept for now.
4-
-- [[<font color="rgb(_COLOR3_)">_COLOR_</font>]]
2+
-- [[<font color="rgb(r, g, b)">COLOR</font>]]
53
{
64
Id = "1",
75
Color = Color3.fromRGB(255, 255, 255),
@@ -25,6 +23,6 @@ local choices = {
2523
Color = Color3.fromRGB(17, 17, 17),
2624
Text = [[<stroke color="rgb(255, 255, 255)" joins="round" thickness="1" transparency="0.75"><font color="rgb(17, 17, 17)">Really black</font></stroke>]],
2725
},
28-
} -- Array of fonts, please fix this. I really hate this.
26+
}
2927

3028
return choices

src/SignsInternal/PluginGui/FontFace.lua

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
local FontFace = {
2-
3-
-- Every font in existance, needs a better loop system for if fromName font is made. Much as a proof of concept for now.
4-
-- [[<font family="rbxasset://fonts/families/_FAMILY_.json">_NAME_</font>]]
5-
2+
-- [[<font family="rbxasset://fonts/families/FAMILY.json">NAME</font>]]
63
{
74
Id = "AccanthisADFStd",
85
Font = Font.fromName("AccanthisADFStd"),
@@ -183,6 +180,6 @@ local FontFace = {
183180
Font = Font.fromName("Zekton"),
184181
Text = [[<font family="rbxasset://fonts/families/Zekton.json">Zekton</font>]],
185182
},
186-
} -- Array of fonts, please fix this. I really hate this.
183+
}
187184

188185
return FontFace

src/SignsInternal/PluginGui/LineJoinMode.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
local choices = {
2-
32
{ Id = "1", Mode = Enum.LineJoinMode.Round, Text = "Round" },
43
{ Id = "2", Mode = Enum.LineJoinMode.Bevel, Text = "Bevel" },
54
{ Id = "3", Mode = Enum.LineJoinMode.Miter, Text = "Miter" },

src/SignsInternal/PluginGui/TextXAlignment.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
local choices = {
2-
32
{ Id = "1", Mode = Enum.TextXAlignment.Left, Text = "Left" },
43
{ Id = "2", Mode = Enum.TextXAlignment.Center, Text = "Center" },
54
{ Id = "3", Mode = Enum.TextXAlignment.Right, Text = "Right" },

src/SignsInternal/PluginGui/TextYAlignment.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
local choices = {
2-
32
{ Id = "1", Mode = Enum.TextYAlignment.Top, Text = "Top" },
43
{ Id = "2", Mode = Enum.TextYAlignment.Center, Text = "Center" },
54
{ Id = "3", Mode = Enum.TextYAlignment.Bottom, Text = "Bottom" },

0 commit comments

Comments
 (0)