-
Notifications
You must be signed in to change notification settings - Fork 0
InteractiveStuffConfig
Omar Mohamed edited this page Mar 24, 2026
·
2 revisions
Provides read access to the current configuration values of the InteractiveStuff mod at runtime.
Returns whether resource pack debug mode is currently enabled.
-
Returns:
Boolean
check config.isResourcePackDebugModeEnabled() do
debugText("Debug mode is ON")
endReturns whether the interactive hits feature is enabled.
-
Returns:
Boolean
Returns whether the sculk sensor feature is enabled.
-
Returns:
Boolean
Returns the cooldown duration (in ticks) between hits.
-
Returns:
Integer— 20 ticks = 1 second
say config.getHitCooldownTicks()
~ Output: 10 (= 0.5 seconds)Returns whether dynamic texture changes are enabled.
-
Returns:
Boolean
Returns whether the note block crouch feature is enabled.
-
Returns:
Boolean
Returns the hit cooldown in ticks. Alias of getHitCooldownTicks().
-
Returns:
Integer
Returns whether specialized note block hits are enabled.
-
Returns:
Boolean
Returns whether resource pack matrix editing is enabled.
-
Returns:
Boolean
Returns whether resource pack color changing is enabled.
-
Returns:
Boolean
~ Guard all matrix/color logic behind config checks
check config.isResourcePackMatrixEditingEnabled() do
item.translate(0, 0.1, 0)
end
check config.isResourcePackColorChangingEnabled() do
item.setColor(255, 100, 0)
endGET IN TOUCH - omar@merakistudios.dev
© 2026 Omar Mohamed. All Rights Reserved.