Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Edited feather enum params to match code #19

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions scripts/ImGui/ImGui.gml
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ function ImGui() constructor {
/// @function ColorEdit3(label, col, flags)
/// @argument {String} label
/// @argument {Real} col
/// @argument {Enum.ImGuiCol} [flags=ImGuiColorEditFlags.None]
/// @argument {Enum.ImGuiColorEditFlags} [flags=ImGuiColorEditFlags.None]
/// @context ImGui
/// @return {Real}
static ColorEdit3 = function(label, col, flags=ImGuiColorEditFlags.None) {
Expand All @@ -615,7 +615,7 @@ function ImGui() constructor {
/// @function ColorPicker3(label, col, flags)
/// @argument {String} label
/// @argument {Real} col
/// @argument {Enum.ImGuiCol} [flags=ImGuiColorEditFlags.None]
/// @argument {Enum.ImGuiColorEditFlags} [flags=ImGuiColorEditFlags.None]
/// @context ImGui
/// @return {Real}
static ColorPicker3 = function(label, col, flags=ImGuiColorEditFlags.None) {
Expand All @@ -625,7 +625,7 @@ function ImGui() constructor {
/// @function ColorEdit4(label, col, flags)
/// @argument {String} label
/// @argument {ImColor} col
/// @argument {Enum.ImGuiCol} [flags=ImGuiColorEditFlags.None]
/// @argument {Enum.ImGuiColorEditFlags} [flags=ImGuiColorEditFlags.None]
/// @context ImGui
/// @return {Bool}
static ColorEdit4 = function(label, col, flags=ImGuiColorEditFlags.None) {
Expand All @@ -635,7 +635,7 @@ function ImGui() constructor {
/// @function ColorPicker4(label, col, flags)
/// @argument {String} label
/// @argument {ImColor} col
/// @argument {Enum.ImGuiCol} [flags=ImGuiColorEditFlags.None]
/// @argument {Enum.ImGuiColorEditFlags} [flags=ImGuiColorEditFlags.None]
/// @context ImGui
/// @return {Bool}
static ColorPicker4 = function(label, col, flags=ImGuiColorEditFlags.None) {
Expand All @@ -646,7 +646,7 @@ function ImGui() constructor {
/// @argument {String} desc_id
/// @argument {Real} color
/// @argument {Real} [alpha=1]
/// @argument {Enum.ImGuiCol} [flags=ImGuiColorEditFlags.None]
/// @argument {Enum.ImGuiColorEditFlags} [flags=ImGuiColorEditFlags.None]
/// @argument {Real} [width=0]
/// @argument {Real} [height=0]
/// @context ImGui
Expand All @@ -656,7 +656,7 @@ function ImGui() constructor {
}

/// @function SetColorEditOptions(flags)
/// @argument {Enum.ImGuiCol} [flags=ImGuiColorEditFlags.None]
/// @argument {Enum.ImGuiColorEditFlags} [flags=ImGuiColorEditFlags.None]
/// @context ImGui
/// @return {Undefined}
static SetColorEditOptions = function(flags=ImGuiColorEditFlags.None) {
Expand Down