Compare commits
No commits in common. "fdf09f8c8e9428a8c071d7e0d99a21810bdd2567" and "8dac1792a098e35f5bed524079292b7bab5becdf" have entirely different histories.
fdf09f8c8e
...
8dac1792a0
4 changed files with 23 additions and 59 deletions
20
docs/docs/reference/coretypes.md
Normal file
20
docs/docs/reference/coretypes.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
sidebar_position: 2
|
||||
description: Contains various enums.
|
||||
---
|
||||
|
||||
# `CoreTypes`
|
||||
Contains globaly accessible custom enums and types used throughout the CORE Framework's source code.
|
||||
|
||||
|
||||
## Enums
|
||||
### <u>VersionType</u>{ RELEASE, RELEASECANDIDATE, BETA, ALPHA }
|
||||
Available version types, following the StarOpenSource Versioning Specification (SOSVS) version 1.
|
||||
### <u>LoggerLevel</u>{ NONE, ERROR, WARN, INFO, VERB, DIAG }
|
||||
Available log levels, followingthe StarOpenSource Logging Specification (SOSLS) version 1.
|
||||
### <u>SceneType</u>{ NONE, DEBUG, CUTSCENE, MENU, MAIN, BACKGROUND }
|
||||
Available scene types.
|
||||
### <u>BlockadeLevel</u>{ IGNORE, WARN, BLOCK }
|
||||
To what degree *something* should be blocked.
|
||||
### <u>ValidationType</u>{ MATCHES_TYPE, MATCHES_CLASS, IN_RANGE, HAS_MINIMUM, HAS_MAXIMUM, HAS_VALUES, CONTAINS, MATCHES_REGEX, IS_NOT_EMPTY, IS_NOT_NULL, IS_NORMALIZED, IS_ORTHONORMALIZED }
|
||||
All validation rules some data can be checked against.
|
|
@ -1,56 +0,0 @@
|
|||
---
|
||||
sidebar_position: 2
|
||||
description: Contains various enums.
|
||||
---
|
||||
|
||||
# `CoreTypes`
|
||||
Contains globaly accessible custom enums and types used throughout the CORE Framework's source code.
|
||||
|
||||
|
||||
## Enums
|
||||
### <u>VersionType</u>
|
||||
Available version types, following the StarOpenSource Versioning Specification (SOSVS) version 1.
|
||||
#### Available values
|
||||
- RELEASE
|
||||
- RELEASECANDIDATE
|
||||
- BETA
|
||||
- ALPHA
|
||||
### <u>LoggerLevel</u>
|
||||
Available log levels, following the StarOpenSource Logging Specification (SOSLS) version 1.
|
||||
#### Available values
|
||||
- NONE
|
||||
- ERROR
|
||||
- WARN
|
||||
- INFO
|
||||
- VERB
|
||||
- DIAG
|
||||
### <u>SceneType</u>
|
||||
Available scene types.
|
||||
### Available values
|
||||
- NONE
|
||||
- DEBUG
|
||||
- CUTSCENE
|
||||
- MENU
|
||||
- MAIN
|
||||
- BACKGROUND
|
||||
### <u>BlockadeLevel</u>
|
||||
To what degree *something* should be blocked.
|
||||
#### Available values
|
||||
- IGNORE
|
||||
- WARN
|
||||
- BLOCK
|
||||
### <u>ValidationType</u>
|
||||
All validation rules some data can be checked against.
|
||||
#### Available values
|
||||
- MATCHES_TYPE
|
||||
- MATCHES_CLASS
|
||||
- IN_RANGE
|
||||
- HAS_MINIMUM
|
||||
- HAS_MAXIMUM
|
||||
- HAS_VALUES
|
||||
- CONTAINS
|
||||
- MATCHES_REGEX
|
||||
- IS_NOT_EMPTY
|
||||
- IS_NOT_NULL
|
||||
- IS_NORMALIZED
|
||||
- IS_ORTHONORMALIZED
|
|
@ -11,7 +11,7 @@ const config: Config = {
|
|||
trailingSlash: true,
|
||||
i18n: {
|
||||
defaultLocale: "en",
|
||||
locales: [ "en" ],
|
||||
locales: ["en"],
|
||||
},
|
||||
noIndex: false,
|
||||
onBrokenLinks: "throw",
|
||||
|
@ -24,7 +24,7 @@ const config: Config = {
|
|||
onBrokenMarkdownLinks: "ignore",
|
||||
onDuplicateRoutes: "ignore",
|
||||
*/
|
||||
tagline: "Simplifying Godot development since 2023.",
|
||||
tagline: "// TODO",
|
||||
|
||||
themeConfig: {
|
||||
docs: {
|
||||
|
|
|
@ -23,7 +23,7 @@ class_name CoreTypes
|
|||
|
||||
## Available version types, following the StarOpenSource Versioning Specification (SOSVS) version 1.
|
||||
enum VersionType { RELEASE, RELEASECANDIDATE, BETA, ALPHA }
|
||||
## Available log levels, following the StarOpenSource Logging Specification (SOSLS) version 1.
|
||||
## Available log levels, followingthe StarOpenSource Logging Specification (SOSLS) version 1.
|
||||
enum LoggerLevel { NONE, SPECIAL, ERROR, WARN, INFO, VERB, DIAG }
|
||||
## Available scene types.
|
||||
enum SceneType { NONE, DEBUG, CUTSCENE, MENU, MAIN, BACKGROUND }
|
||||
|
|
Loading…
Reference in a new issue