Add Godot priorities page (#955)

Co-authored-by: Emi <2206700+coppolaemilio@users.noreply.github.com>
This commit is contained in:
Adam Scott
2024-12-02 15:44:47 -05:00
committed by GitHub
parent c0da3f39d9
commit 6f0e01cbc9
82 changed files with 2889 additions and 684 deletions

View File

@@ -16,3 +16,7 @@ indent_size = 2
[*.rb]
indent_style = space
indent_size = 2
[*.md]
indent_style = space
indent_size = 2

View File

@@ -26,6 +26,8 @@ collections:
download_3:
output: true
permalink: /download/3.x/:name/
priorities:
output: true
# Build collection items with a future date.
future: true

View File

@@ -21,6 +21,7 @@
<li><a href="/code-of-conduct/">Code of Conduct</a></li>
<li><a href="/governance/">Governance</a></li>
<li><a href="/teams/">Teams</a></li>
<li><a href="/priorities/">Priorities</a></li>
<li><a href="/community/">Communities</a></li>
</ul>
</div>
@@ -41,7 +42,7 @@
<li><a href="/license/">License</a></li>
<li><a href="/privacy-policy/">Privacy Policy</a></li>
<li><a href="/contact/">Contact us</a></li>
</ul>
</ul>
</div>
</div>
<hr>

View File

@@ -1,3 +1,6 @@
//
// Functions
//
@function offset-hue($color, $offset, $i: 1) {
@return adjust-hue($color, $offset * $i);
}
@@ -51,3 +54,18 @@
@function r-get-mobile($value) {
@return map-get($value, "mobile");
}
//
// Mixins
//
@mixin is-dark() {
@media screen and (prefers-color-scheme: dark) {
@content;
}
}
@mixin is-light() {
@media screen and (prefers-color-scheme: light) {
@content;
}
}

View File

@@ -1,630 +0,0 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
@font-face {
font-family: "codicon";
font-display: block;
src: url("../fonts/codicon.ttf") format("truetype");
}
.codicon[class*='codicon-'] {
font: normal normal normal 16px/1 codicon;
display: inline-block;
text-decoration: none;
text-rendering: auto;
text-align: center;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
/*---------------------
* Modifiers
*-------------------*/
@keyframes codicon-spin {
100% {
transform:rotate(360deg);
}
}
.codicon-sync.codicon-modifier-spin,
.codicon-loading.codicon-modifier-spin,
.codicon-gear.codicon-modifier-spin {
/* Use steps to throttle FPS to reduce CPU usage */
animation: codicon-spin 1.5s steps(30) infinite;
}
.codicon-modifier-disabled {
opacity: 0.5;
}
.codicon-modifier-hidden {
opacity: 0;
}
/* custom speed & easing for loading icon */
.codicon-loading {
animation-duration: 1s !important;
animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67) !important;
}
/*---------------------
* Icons
*-------------------*/
.codicon-add:before { content: "\ea60" }
.codicon-plus:before { content: "\ea60" }
.codicon-gist-new:before { content: "\ea60" }
.codicon-repo-create:before { content: "\ea60" }
.codicon-lightbulb:before { content: "\ea61" }
.codicon-light-bulb:before { content: "\ea61" }
.codicon-repo:before { content: "\ea62" }
.codicon-repo-delete:before { content: "\ea62" }
.codicon-gist-fork:before { content: "\ea63" }
.codicon-repo-forked:before { content: "\ea63" }
.codicon-git-pull-request:before { content: "\ea64" }
.codicon-git-pull-request-abandoned:before { content: "\ea64" }
.codicon-record-keys:before { content: "\ea65" }
.codicon-keyboard:before { content: "\ea65" }
.codicon-tag:before { content: "\ea66" }
.codicon-git-pull-request-label:before { content: "\ea66" }
.codicon-tag-add:before { content: "\ea66" }
.codicon-tag-remove:before { content: "\ea66" }
.codicon-person:before { content: "\ea67" }
.codicon-person-follow:before { content: "\ea67" }
.codicon-person-outline:before { content: "\ea67" }
.codicon-person-filled:before { content: "\ea67" }
.codicon-git-branch:before { content: "\ea68" }
.codicon-git-branch-create:before { content: "\ea68" }
.codicon-git-branch-delete:before { content: "\ea68" }
.codicon-source-control:before { content: "\ea68" }
.codicon-mirror:before { content: "\ea69" }
.codicon-mirror-public:before { content: "\ea69" }
.codicon-star:before { content: "\ea6a" }
.codicon-star-add:before { content: "\ea6a" }
.codicon-star-delete:before { content: "\ea6a" }
.codicon-star-empty:before { content: "\ea6a" }
.codicon-comment:before { content: "\ea6b" }
.codicon-comment-add:before { content: "\ea6b" }
.codicon-alert:before { content: "\ea6c" }
.codicon-warning:before { content: "\ea6c" }
.codicon-search:before { content: "\ea6d" }
.codicon-search-save:before { content: "\ea6d" }
.codicon-log-out:before { content: "\ea6e" }
.codicon-sign-out:before { content: "\ea6e" }
.codicon-log-in:before { content: "\ea6f" }
.codicon-sign-in:before { content: "\ea6f" }
.codicon-eye:before { content: "\ea70" }
.codicon-eye-unwatch:before { content: "\ea70" }
.codicon-eye-watch:before { content: "\ea70" }
.codicon-circle-filled:before { content: "\ea71" }
.codicon-primitive-dot:before { content: "\ea71" }
.codicon-close-dirty:before { content: "\ea71" }
.codicon-debug-breakpoint:before { content: "\ea71" }
.codicon-debug-breakpoint-disabled:before { content: "\ea71" }
.codicon-debug-hint:before { content: "\ea71" }
.codicon-terminal-decoration-success:before { content: "\ea71" }
.codicon-primitive-square:before { content: "\ea72" }
.codicon-edit:before { content: "\ea73" }
.codicon-pencil:before { content: "\ea73" }
.codicon-info:before { content: "\ea74" }
.codicon-issue-opened:before { content: "\ea74" }
.codicon-gist-private:before { content: "\ea75" }
.codicon-git-fork-private:before { content: "\ea75" }
.codicon-lock:before { content: "\ea75" }
.codicon-mirror-private:before { content: "\ea75" }
.codicon-close:before { content: "\ea76" }
.codicon-remove-close:before { content: "\ea76" }
.codicon-x:before { content: "\ea76" }
.codicon-repo-sync:before { content: "\ea77" }
.codicon-sync:before { content: "\ea77" }
.codicon-clone:before { content: "\ea78" }
.codicon-desktop-download:before { content: "\ea78" }
.codicon-beaker:before { content: "\ea79" }
.codicon-microscope:before { content: "\ea79" }
.codicon-vm:before { content: "\ea7a" }
.codicon-device-desktop:before { content: "\ea7a" }
.codicon-file:before { content: "\ea7b" }
.codicon-file-text:before { content: "\ea7b" }
.codicon-more:before { content: "\ea7c" }
.codicon-ellipsis:before { content: "\ea7c" }
.codicon-kebab-horizontal:before { content: "\ea7c" }
.codicon-mail-reply:before { content: "\ea7d" }
.codicon-reply:before { content: "\ea7d" }
.codicon-organization:before { content: "\ea7e" }
.codicon-organization-filled:before { content: "\ea7e" }
.codicon-organization-outline:before { content: "\ea7e" }
.codicon-new-file:before { content: "\ea7f" }
.codicon-file-add:before { content: "\ea7f" }
.codicon-new-folder:before { content: "\ea80" }
.codicon-file-directory-create:before { content: "\ea80" }
.codicon-trash:before { content: "\ea81" }
.codicon-trashcan:before { content: "\ea81" }
.codicon-history:before { content: "\ea82" }
.codicon-clock:before { content: "\ea82" }
.codicon-folder:before { content: "\ea83" }
.codicon-file-directory:before { content: "\ea83" }
.codicon-symbol-folder:before { content: "\ea83" }
.codicon-logo-github:before { content: "\ea84" }
.codicon-mark-github:before { content: "\ea84" }
.codicon-github:before { content: "\ea84" }
.codicon-terminal:before { content: "\ea85" }
.codicon-console:before { content: "\ea85" }
.codicon-repl:before { content: "\ea85" }
.codicon-zap:before { content: "\ea86" }
.codicon-symbol-event:before { content: "\ea86" }
.codicon-error:before { content: "\ea87" }
.codicon-stop:before { content: "\ea87" }
.codicon-variable:before { content: "\ea88" }
.codicon-symbol-variable:before { content: "\ea88" }
.codicon-array:before { content: "\ea8a" }
.codicon-symbol-array:before { content: "\ea8a" }
.codicon-symbol-module:before { content: "\ea8b" }
.codicon-symbol-package:before { content: "\ea8b" }
.codicon-symbol-namespace:before { content: "\ea8b" }
.codicon-symbol-object:before { content: "\ea8b" }
.codicon-symbol-method:before { content: "\ea8c" }
.codicon-symbol-function:before { content: "\ea8c" }
.codicon-symbol-constructor:before { content: "\ea8c" }
.codicon-symbol-boolean:before { content: "\ea8f" }
.codicon-symbol-null:before { content: "\ea8f" }
.codicon-symbol-numeric:before { content: "\ea90" }
.codicon-symbol-number:before { content: "\ea90" }
.codicon-symbol-structure:before { content: "\ea91" }
.codicon-symbol-struct:before { content: "\ea91" }
.codicon-symbol-parameter:before { content: "\ea92" }
.codicon-symbol-type-parameter:before { content: "\ea92" }
.codicon-symbol-key:before { content: "\ea93" }
.codicon-symbol-text:before { content: "\ea93" }
.codicon-symbol-reference:before { content: "\ea94" }
.codicon-go-to-file:before { content: "\ea94" }
.codicon-symbol-enum:before { content: "\ea95" }
.codicon-symbol-value:before { content: "\ea95" }
.codicon-symbol-ruler:before { content: "\ea96" }
.codicon-symbol-unit:before { content: "\ea96" }
.codicon-activate-breakpoints:before { content: "\ea97" }
.codicon-archive:before { content: "\ea98" }
.codicon-arrow-both:before { content: "\ea99" }
.codicon-arrow-down:before { content: "\ea9a" }
.codicon-arrow-left:before { content: "\ea9b" }
.codicon-arrow-right:before { content: "\ea9c" }
.codicon-arrow-small-down:before { content: "\ea9d" }
.codicon-arrow-small-left:before { content: "\ea9e" }
.codicon-arrow-small-right:before { content: "\ea9f" }
.codicon-arrow-small-up:before { content: "\eaa0" }
.codicon-arrow-up:before { content: "\eaa1" }
.codicon-bell:before { content: "\eaa2" }
.codicon-bold:before { content: "\eaa3" }
.codicon-book:before { content: "\eaa4" }
.codicon-bookmark:before { content: "\eaa5" }
.codicon-debug-breakpoint-conditional-unverified:before { content: "\eaa6" }
.codicon-debug-breakpoint-conditional:before { content: "\eaa7" }
.codicon-debug-breakpoint-conditional-disabled:before { content: "\eaa7" }
.codicon-debug-breakpoint-data-unverified:before { content: "\eaa8" }
.codicon-debug-breakpoint-data:before { content: "\eaa9" }
.codicon-debug-breakpoint-data-disabled:before { content: "\eaa9" }
.codicon-debug-breakpoint-log-unverified:before { content: "\eaaa" }
.codicon-debug-breakpoint-log:before { content: "\eaab" }
.codicon-debug-breakpoint-log-disabled:before { content: "\eaab" }
.codicon-briefcase:before { content: "\eaac" }
.codicon-broadcast:before { content: "\eaad" }
.codicon-browser:before { content: "\eaae" }
.codicon-bug:before { content: "\eaaf" }
.codicon-calendar:before { content: "\eab0" }
.codicon-case-sensitive:before { content: "\eab1" }
.codicon-check:before { content: "\eab2" }
.codicon-checklist:before { content: "\eab3" }
.codicon-chevron-down:before { content: "\eab4" }
.codicon-chevron-left:before { content: "\eab5" }
.codicon-chevron-right:before { content: "\eab6" }
.codicon-chevron-up:before { content: "\eab7" }
.codicon-chrome-close:before { content: "\eab8" }
.codicon-chrome-maximize:before { content: "\eab9" }
.codicon-chrome-minimize:before { content: "\eaba" }
.codicon-chrome-restore:before { content: "\eabb" }
.codicon-circle-outline:before { content: "\eabc" }
.codicon-circle:before { content: "\eabc" }
.codicon-debug-breakpoint-unverified:before { content: "\eabc" }
.codicon-terminal-decoration-incomplete:before { content: "\eabc" }
.codicon-circle-slash:before { content: "\eabd" }
.codicon-circuit-board:before { content: "\eabe" }
.codicon-clear-all:before { content: "\eabf" }
.codicon-clippy:before { content: "\eac0" }
.codicon-close-all:before { content: "\eac1" }
.codicon-cloud-download:before { content: "\eac2" }
.codicon-cloud-upload:before { content: "\eac3" }
.codicon-code:before { content: "\eac4" }
.codicon-collapse-all:before { content: "\eac5" }
.codicon-color-mode:before { content: "\eac6" }
.codicon-comment-discussion:before { content: "\eac7" }
.codicon-credit-card:before { content: "\eac9" }
.codicon-dash:before { content: "\eacc" }
.codicon-dashboard:before { content: "\eacd" }
.codicon-database:before { content: "\eace" }
.codicon-debug-continue:before { content: "\eacf" }
.codicon-debug-disconnect:before { content: "\ead0" }
.codicon-debug-pause:before { content: "\ead1" }
.codicon-debug-restart:before { content: "\ead2" }
.codicon-debug-start:before { content: "\ead3" }
.codicon-debug-step-into:before { content: "\ead4" }
.codicon-debug-step-out:before { content: "\ead5" }
.codicon-debug-step-over:before { content: "\ead6" }
.codicon-debug-stop:before { content: "\ead7" }
.codicon-debug:before { content: "\ead8" }
.codicon-device-camera-video:before { content: "\ead9" }
.codicon-device-camera:before { content: "\eada" }
.codicon-device-mobile:before { content: "\eadb" }
.codicon-diff-added:before { content: "\eadc" }
.codicon-diff-ignored:before { content: "\eadd" }
.codicon-diff-modified:before { content: "\eade" }
.codicon-diff-removed:before { content: "\eadf" }
.codicon-diff-renamed:before { content: "\eae0" }
.codicon-diff:before { content: "\eae1" }
.codicon-diff-sidebyside:before { content: "\eae1" }
.codicon-discard:before { content: "\eae2" }
.codicon-editor-layout:before { content: "\eae3" }
.codicon-empty-window:before { content: "\eae4" }
.codicon-exclude:before { content: "\eae5" }
.codicon-extensions:before { content: "\eae6" }
.codicon-eye-closed:before { content: "\eae7" }
.codicon-file-binary:before { content: "\eae8" }
.codicon-file-code:before { content: "\eae9" }
.codicon-file-media:before { content: "\eaea" }
.codicon-file-pdf:before { content: "\eaeb" }
.codicon-file-submodule:before { content: "\eaec" }
.codicon-file-symlink-directory:before { content: "\eaed" }
.codicon-file-symlink-file:before { content: "\eaee" }
.codicon-file-zip:before { content: "\eaef" }
.codicon-files:before { content: "\eaf0" }
.codicon-filter:before { content: "\eaf1" }
.codicon-flame:before { content: "\eaf2" }
.codicon-fold-down:before { content: "\eaf3" }
.codicon-fold-up:before { content: "\eaf4" }
.codicon-fold:before { content: "\eaf5" }
.codicon-folder-active:before { content: "\eaf6" }
.codicon-folder-opened:before { content: "\eaf7" }
.codicon-gear:before { content: "\eaf8" }
.codicon-gift:before { content: "\eaf9" }
.codicon-gist-secret:before { content: "\eafa" }
.codicon-gist:before { content: "\eafb" }
.codicon-git-commit:before { content: "\eafc" }
.codicon-git-compare:before { content: "\eafd" }
.codicon-compare-changes:before { content: "\eafd" }
.codicon-git-merge:before { content: "\eafe" }
.codicon-github-action:before { content: "\eaff" }
.codicon-github-alt:before { content: "\eb00" }
.codicon-globe:before { content: "\eb01" }
.codicon-grabber:before { content: "\eb02" }
.codicon-graph:before { content: "\eb03" }
.codicon-gripper:before { content: "\eb04" }
.codicon-heart:before { content: "\eb05" }
.codicon-home:before { content: "\eb06" }
.codicon-horizontal-rule:before { content: "\eb07" }
.codicon-hubot:before { content: "\eb08" }
.codicon-inbox:before { content: "\eb09" }
.codicon-issue-reopened:before { content: "\eb0b" }
.codicon-issues:before { content: "\eb0c" }
.codicon-italic:before { content: "\eb0d" }
.codicon-jersey:before { content: "\eb0e" }
.codicon-json:before { content: "\eb0f" }
.codicon-kebab-vertical:before { content: "\eb10" }
.codicon-key:before { content: "\eb11" }
.codicon-law:before { content: "\eb12" }
.codicon-lightbulb-autofix:before { content: "\eb13" }
.codicon-link-external:before { content: "\eb14" }
.codicon-link:before { content: "\eb15" }
.codicon-list-ordered:before { content: "\eb16" }
.codicon-list-unordered:before { content: "\eb17" }
.codicon-live-share:before { content: "\eb18" }
.codicon-loading:before { content: "\eb19" }
.codicon-location:before { content: "\eb1a" }
.codicon-mail-read:before { content: "\eb1b" }
.codicon-mail:before { content: "\eb1c" }
.codicon-markdown:before { content: "\eb1d" }
.codicon-megaphone:before { content: "\eb1e" }
.codicon-mention:before { content: "\eb1f" }
.codicon-milestone:before { content: "\eb20" }
.codicon-git-pull-request-milestone:before { content: "\eb20" }
.codicon-mortar-board:before { content: "\eb21" }
.codicon-move:before { content: "\eb22" }
.codicon-multiple-windows:before { content: "\eb23" }
.codicon-mute:before { content: "\eb24" }
.codicon-no-newline:before { content: "\eb25" }
.codicon-note:before { content: "\eb26" }
.codicon-octoface:before { content: "\eb27" }
.codicon-open-preview:before { content: "\eb28" }
.codicon-package:before { content: "\eb29" }
.codicon-paintcan:before { content: "\eb2a" }
.codicon-pin:before { content: "\eb2b" }
.codicon-play:before { content: "\eb2c" }
.codicon-run:before { content: "\eb2c" }
.codicon-plug:before { content: "\eb2d" }
.codicon-preserve-case:before { content: "\eb2e" }
.codicon-preview:before { content: "\eb2f" }
.codicon-project:before { content: "\eb30" }
.codicon-pulse:before { content: "\eb31" }
.codicon-question:before { content: "\eb32" }
.codicon-quote:before { content: "\eb33" }
.codicon-radio-tower:before { content: "\eb34" }
.codicon-reactions:before { content: "\eb35" }
.codicon-references:before { content: "\eb36" }
.codicon-refresh:before { content: "\eb37" }
.codicon-regex:before { content: "\eb38" }
.codicon-remote-explorer:before { content: "\eb39" }
.codicon-remote:before { content: "\eb3a" }
.codicon-remove:before { content: "\eb3b" }
.codicon-replace-all:before { content: "\eb3c" }
.codicon-replace:before { content: "\eb3d" }
.codicon-repo-clone:before { content: "\eb3e" }
.codicon-repo-force-push:before { content: "\eb3f" }
.codicon-repo-pull:before { content: "\eb40" }
.codicon-repo-push:before { content: "\eb41" }
.codicon-report:before { content: "\eb42" }
.codicon-request-changes:before { content: "\eb43" }
.codicon-rocket:before { content: "\eb44" }
.codicon-root-folder-opened:before { content: "\eb45" }
.codicon-root-folder:before { content: "\eb46" }
.codicon-rss:before { content: "\eb47" }
.codicon-ruby:before { content: "\eb48" }
.codicon-save-all:before { content: "\eb49" }
.codicon-save-as:before { content: "\eb4a" }
.codicon-save:before { content: "\eb4b" }
.codicon-screen-full:before { content: "\eb4c" }
.codicon-screen-normal:before { content: "\eb4d" }
.codicon-search-stop:before { content: "\eb4e" }
.codicon-server:before { content: "\eb50" }
.codicon-settings-gear:before { content: "\eb51" }
.codicon-settings:before { content: "\eb52" }
.codicon-shield:before { content: "\eb53" }
.codicon-smiley:before { content: "\eb54" }
.codicon-sort-precedence:before { content: "\eb55" }
.codicon-split-horizontal:before { content: "\eb56" }
.codicon-split-vertical:before { content: "\eb57" }
.codicon-squirrel:before { content: "\eb58" }
.codicon-star-full:before { content: "\eb59" }
.codicon-star-half:before { content: "\eb5a" }
.codicon-symbol-class:before { content: "\eb5b" }
.codicon-symbol-color:before { content: "\eb5c" }
.codicon-symbol-constant:before { content: "\eb5d" }
.codicon-symbol-enum-member:before { content: "\eb5e" }
.codicon-symbol-field:before { content: "\eb5f" }
.codicon-symbol-file:before { content: "\eb60" }
.codicon-symbol-interface:before { content: "\eb61" }
.codicon-symbol-keyword:before { content: "\eb62" }
.codicon-symbol-misc:before { content: "\eb63" }
.codicon-symbol-operator:before { content: "\eb64" }
.codicon-symbol-property:before { content: "\eb65" }
.codicon-wrench:before { content: "\eb65" }
.codicon-wrench-subaction:before { content: "\eb65" }
.codicon-symbol-snippet:before { content: "\eb66" }
.codicon-tasklist:before { content: "\eb67" }
.codicon-telescope:before { content: "\eb68" }
.codicon-text-size:before { content: "\eb69" }
.codicon-three-bars:before { content: "\eb6a" }
.codicon-thumbsdown:before { content: "\eb6b" }
.codicon-thumbsup:before { content: "\eb6c" }
.codicon-tools:before { content: "\eb6d" }
.codicon-triangle-down:before { content: "\eb6e" }
.codicon-triangle-left:before { content: "\eb6f" }
.codicon-triangle-right:before { content: "\eb70" }
.codicon-triangle-up:before { content: "\eb71" }
.codicon-twitter:before { content: "\eb72" }
.codicon-unfold:before { content: "\eb73" }
.codicon-unlock:before { content: "\eb74" }
.codicon-unmute:before { content: "\eb75" }
.codicon-unverified:before { content: "\eb76" }
.codicon-verified:before { content: "\eb77" }
.codicon-versions:before { content: "\eb78" }
.codicon-vm-active:before { content: "\eb79" }
.codicon-vm-outline:before { content: "\eb7a" }
.codicon-vm-running:before { content: "\eb7b" }
.codicon-watch:before { content: "\eb7c" }
.codicon-whitespace:before { content: "\eb7d" }
.codicon-whole-word:before { content: "\eb7e" }
.codicon-window:before { content: "\eb7f" }
.codicon-word-wrap:before { content: "\eb80" }
.codicon-zoom-in:before { content: "\eb81" }
.codicon-zoom-out:before { content: "\eb82" }
.codicon-list-filter:before { content: "\eb83" }
.codicon-list-flat:before { content: "\eb84" }
.codicon-list-selection:before { content: "\eb85" }
.codicon-selection:before { content: "\eb85" }
.codicon-list-tree:before { content: "\eb86" }
.codicon-debug-breakpoint-function-unverified:before { content: "\eb87" }
.codicon-debug-breakpoint-function:before { content: "\eb88" }
.codicon-debug-breakpoint-function-disabled:before { content: "\eb88" }
.codicon-debug-stackframe-active:before { content: "\eb89" }
.codicon-circle-small-filled:before { content: "\eb8a" }
.codicon-debug-stackframe-dot:before { content: "\eb8a" }
.codicon-terminal-decoration-mark:before { content: "\eb8a" }
.codicon-debug-stackframe:before { content: "\eb8b" }
.codicon-debug-stackframe-focused:before { content: "\eb8b" }
.codicon-debug-breakpoint-unsupported:before { content: "\eb8c" }
.codicon-symbol-string:before { content: "\eb8d" }
.codicon-debug-reverse-continue:before { content: "\eb8e" }
.codicon-debug-step-back:before { content: "\eb8f" }
.codicon-debug-restart-frame:before { content: "\eb90" }
.codicon-debug-alt:before { content: "\eb91" }
.codicon-call-incoming:before { content: "\eb92" }
.codicon-call-outgoing:before { content: "\eb93" }
.codicon-menu:before { content: "\eb94" }
.codicon-expand-all:before { content: "\eb95" }
.codicon-feedback:before { content: "\eb96" }
.codicon-git-pull-request-reviewer:before { content: "\eb96" }
.codicon-group-by-ref-type:before { content: "\eb97" }
.codicon-ungroup-by-ref-type:before { content: "\eb98" }
.codicon-account:before { content: "\eb99" }
.codicon-git-pull-request-assignee:before { content: "\eb99" }
.codicon-bell-dot:before { content: "\eb9a" }
.codicon-debug-console:before { content: "\eb9b" }
.codicon-library:before { content: "\eb9c" }
.codicon-output:before { content: "\eb9d" }
.codicon-run-all:before { content: "\eb9e" }
.codicon-sync-ignored:before { content: "\eb9f" }
.codicon-pinned:before { content: "\eba0" }
.codicon-github-inverted:before { content: "\eba1" }
.codicon-server-process:before { content: "\eba2" }
.codicon-server-environment:before { content: "\eba3" }
.codicon-pass:before { content: "\eba4" }
.codicon-issue-closed:before { content: "\eba4" }
.codicon-stop-circle:before { content: "\eba5" }
.codicon-play-circle:before { content: "\eba6" }
.codicon-record:before { content: "\eba7" }
.codicon-debug-alt-small:before { content: "\eba8" }
.codicon-vm-connect:before { content: "\eba9" }
.codicon-cloud:before { content: "\ebaa" }
.codicon-merge:before { content: "\ebab" }
.codicon-export:before { content: "\ebac" }
.codicon-graph-left:before { content: "\ebad" }
.codicon-magnet:before { content: "\ebae" }
.codicon-notebook:before { content: "\ebaf" }
.codicon-redo:before { content: "\ebb0" }
.codicon-check-all:before { content: "\ebb1" }
.codicon-pinned-dirty:before { content: "\ebb2" }
.codicon-pass-filled:before { content: "\ebb3" }
.codicon-circle-large-filled:before { content: "\ebb4" }
.codicon-circle-large:before { content: "\ebb5" }
.codicon-circle-large-outline:before { content: "\ebb5" }
.codicon-combine:before { content: "\ebb6" }
.codicon-gather:before { content: "\ebb6" }
.codicon-table:before { content: "\ebb7" }
.codicon-variable-group:before { content: "\ebb8" }
.codicon-type-hierarchy:before { content: "\ebb9" }
.codicon-type-hierarchy-sub:before { content: "\ebba" }
.codicon-type-hierarchy-super:before { content: "\ebbb" }
.codicon-git-pull-request-create:before { content: "\ebbc" }
.codicon-run-above:before { content: "\ebbd" }
.codicon-run-below:before { content: "\ebbe" }
.codicon-notebook-template:before { content: "\ebbf" }
.codicon-debug-rerun:before { content: "\ebc0" }
.codicon-workspace-trusted:before { content: "\ebc1" }
.codicon-workspace-untrusted:before { content: "\ebc2" }
.codicon-workspace-unknown:before { content: "\ebc3" }
.codicon-terminal-cmd:before { content: "\ebc4" }
.codicon-terminal-debian:before { content: "\ebc5" }
.codicon-terminal-linux:before { content: "\ebc6" }
.codicon-terminal-powershell:before { content: "\ebc7" }
.codicon-terminal-tmux:before { content: "\ebc8" }
.codicon-terminal-ubuntu:before { content: "\ebc9" }
.codicon-terminal-bash:before { content: "\ebca" }
.codicon-arrow-swap:before { content: "\ebcb" }
.codicon-copy:before { content: "\ebcc" }
.codicon-person-add:before { content: "\ebcd" }
.codicon-filter-filled:before { content: "\ebce" }
.codicon-wand:before { content: "\ebcf" }
.codicon-debug-line-by-line:before { content: "\ebd0" }
.codicon-inspect:before { content: "\ebd1" }
.codicon-layers:before { content: "\ebd2" }
.codicon-layers-dot:before { content: "\ebd3" }
.codicon-layers-active:before { content: "\ebd4" }
.codicon-compass:before { content: "\ebd5" }
.codicon-compass-dot:before { content: "\ebd6" }
.codicon-compass-active:before { content: "\ebd7" }
.codicon-azure:before { content: "\ebd8" }
.codicon-issue-draft:before { content: "\ebd9" }
.codicon-git-pull-request-closed:before { content: "\ebda" }
.codicon-git-pull-request-draft:before { content: "\ebdb" }
.codicon-debug-all:before { content: "\ebdc" }
.codicon-debug-coverage:before { content: "\ebdd" }
.codicon-run-errors:before { content: "\ebde" }
.codicon-folder-library:before { content: "\ebdf" }
.codicon-debug-continue-small:before { content: "\ebe0" }
.codicon-beaker-stop:before { content: "\ebe1" }
.codicon-graph-line:before { content: "\ebe2" }
.codicon-graph-scatter:before { content: "\ebe3" }
.codicon-pie-chart:before { content: "\ebe4" }
.codicon-bracket:before { content: "\eb0f" }
.codicon-bracket-dot:before { content: "\ebe5" }
.codicon-bracket-error:before { content: "\ebe6" }
.codicon-lock-small:before { content: "\ebe7" }
.codicon-azure-devops:before { content: "\ebe8" }
.codicon-verified-filled:before { content: "\ebe9" }
.codicon-newline:before { content: "\ebea" }
.codicon-layout:before { content: "\ebeb" }
.codicon-layout-activitybar-left:before { content: "\ebec" }
.codicon-layout-activitybar-right:before { content: "\ebed" }
.codicon-layout-panel-left:before { content: "\ebee" }
.codicon-layout-panel-center:before { content: "\ebef" }
.codicon-layout-panel-justify:before { content: "\ebf0" }
.codicon-layout-panel-right:before { content: "\ebf1" }
.codicon-layout-panel:before { content: "\ebf2" }
.codicon-layout-sidebar-left:before { content: "\ebf3" }
.codicon-layout-sidebar-right:before { content: "\ebf4" }
.codicon-layout-statusbar:before { content: "\ebf5" }
.codicon-layout-menubar:before { content: "\ebf6" }
.codicon-layout-centered:before { content: "\ebf7" }
.codicon-target:before { content: "\ebf8" }
.codicon-indent:before { content: "\ebf9" }
.codicon-record-small:before { content: "\ebfa" }
.codicon-error-small:before { content: "\ebfb" }
.codicon-terminal-decoration-error:before { content: "\ebfb" }
.codicon-arrow-circle-down:before { content: "\ebfc" }
.codicon-arrow-circle-left:before { content: "\ebfd" }
.codicon-arrow-circle-right:before { content: "\ebfe" }
.codicon-arrow-circle-up:before { content: "\ebff" }
.codicon-layout-sidebar-right-off:before { content: "\ec00" }
.codicon-layout-panel-off:before { content: "\ec01" }
.codicon-layout-sidebar-left-off:before { content: "\ec02" }
.codicon-blank:before { content: "\ec03" }
.codicon-heart-filled:before { content: "\ec04" }
.codicon-map:before { content: "\ec05" }
.codicon-map-horizontal:before { content: "\ec05" }
.codicon-fold-horizontal:before { content: "\ec05" }
.codicon-map-filled:before { content: "\ec06" }
.codicon-map-horizontal-filled:before { content: "\ec06" }
.codicon-fold-horizontal-filled:before { content: "\ec06" }
.codicon-circle-small:before { content: "\ec07" }
.codicon-bell-slash:before { content: "\ec08" }
.codicon-bell-slash-dot:before { content: "\ec09" }
.codicon-comment-unresolved:before { content: "\ec0a" }
.codicon-git-pull-request-go-to-changes:before { content: "\ec0b" }
.codicon-git-pull-request-new-changes:before { content: "\ec0c" }
.codicon-search-fuzzy:before { content: "\ec0d" }
.codicon-comment-draft:before { content: "\ec0e" }
.codicon-send:before { content: "\ec0f" }
.codicon-sparkle:before { content: "\ec10" }
.codicon-insert:before { content: "\ec11" }
.codicon-mic:before { content: "\ec12" }
.codicon-thumbsdown-filled:before { content: "\ec13" }
.codicon-thumbsup-filled:before { content: "\ec14" }
.codicon-coffee:before { content: "\ec15" }
.codicon-snake:before { content: "\ec16" }
.codicon-game:before { content: "\ec17" }
.codicon-vr:before { content: "\ec18" }
.codicon-chip:before { content: "\ec19" }
.codicon-piano:before { content: "\ec1a" }
.codicon-music:before { content: "\ec1b" }
.codicon-mic-filled:before { content: "\ec1c" }
.codicon-repo-fetch:before { content: "\ec1d" }
.codicon-copilot:before { content: "\ec1e" }
.codicon-lightbulb-sparkle:before { content: "\ec1f" }
.codicon-robot:before { content: "\ec20" }
.codicon-sparkle-filled:before { content: "\ec21" }
.codicon-diff-single:before { content: "\ec22" }
.codicon-diff-multiple:before { content: "\ec23" }
.codicon-surround-with:before { content: "\ec24" }
.codicon-share:before { content: "\ec25" }
.codicon-git-stash:before { content: "\ec26" }
.codicon-git-stash-apply:before { content: "\ec27" }
.codicon-git-stash-pop:before { content: "\ec28" }
.codicon-vscode:before { content: "\ec29" }
.codicon-vscode-insiders:before { content: "\ec2a" }
.codicon-code-oss:before { content: "\ec2b" }
.codicon-run-coverage:before { content: "\ec2c" }
.codicon-run-all-coverage:before { content: "\ec2d" }
.codicon-coverage:before { content: "\ec2e" }
.codicon-github-project:before { content: "\ec2f" }
.codicon-map-vertical:before { content: "\ec30" }
.codicon-fold-vertical:before { content: "\ec30" }
.codicon-map-vertical-filled:before { content: "\ec31" }
.codicon-fold-vertical-filled:before { content: "\ec31" }
.codicon-go-to-search:before { content: "\ec32" }
.codicon-percentage:before { content: "\ec33" }
.codicon-sort-percentage:before { content: "\ec33" }
.codicon-attach:before { content: "\ec34" }
.codicon-git-fetch:before { content: "\f101" }

View File

@@ -259,6 +259,7 @@
*:focus {
/* More visible outline for better keyboard navigation. */
outline: 0.125rem solid hsl(220, 100%, 62.5%);
outline-color: currentcolor;
/* Make the outline always appear above other elements. */
/* Otherwise, one of its sides can be hidden by tabs in the Download and More layouts. */
position: relative;
@@ -282,7 +283,6 @@ body a {
color: var(--link-color);
text-decoration: underline;
text-decoration-color: var(--link-underline-color);
text-decoration-thickness: 0.125rem;
/* Prevent color transitions from being too fast (for epilepsy). */
transition: 0.1s filter;
}
@@ -311,7 +311,7 @@ h1,
h2,
h3,
h4,
nav a,
#nav a,
.btn,
a.btn,
.title-font {
@@ -437,31 +437,33 @@ header {
.container {
overflow: initial;
}
.fund {
margin-right: 0px;
&.desktop {
@media (max-width: 1200px) {
display: none;
}
}
&.mobile {
top: -2px;
position: relative;
@media (min-width: 1200px) {
display: none;
}
}
a {
text-decoration: none;
color: var(--fund-color);
color: white;
background-color: var(--fund-color) !important; // avoid hover overwrite
border-radius: var(--button-border-radius);
box-shadow: inset 0 0 0 2px var(--fund-color);
padding: 13px;
}
}
#nav, #nav_head {
.fund {
margin-right: 0px;
&.desktop {
@media (max-width: 1200px) {
display: none;
}
}
&.mobile {
top: -2px;
position: relative;
@media (min-width: 1200px) {
display: none;
}
}
a {
text-decoration: none;
color: var(--fund-color);
color: white;
background-color: var(--fund-color) !important; // avoid hover overwrite
border-radius: var(--button-border-radius);
box-shadow: inset 0 0 0 2px var(--fund-color);
padding: 13px;
}
}
}
#logo-link {
/* Make the logo's clickable area as tall as for other navigation links. */
padding: 0.2rem 0.5rem;
@@ -496,7 +498,7 @@ header > div.container {
align-items: center;
}
nav {
#nav {
width: 100%;
display: flex;
justify-content: space-between;
@@ -504,7 +506,7 @@ nav {
padding-right: 1rem;
}
nav a {
#nav a {
text-decoration: none;
font-size: 16px;
font-weight: 400;
@@ -513,32 +515,32 @@ nav a {
padding: 1.3175rem 1rem;
}
nav a:hover,
#nav a:hover,
#logo-link:hover {
background-color: hsla(0, 0%, 50%, 0.1);
}
nav ul {
#nav ul {
list-style: none;
margin: 0;
padding-left: 0;
}
nav > ul {
#nav > ul {
display: flex;
align-items: center;
height: 100%;
}
nav > ul > :first-child {
#nav > ul > :first-child {
padding-left: 0;
}
nav > ul > :last-child {
#nav > ul > :last-child {
padding-right: 0;
}
nav > ul li {
#nav > ul li {
padding-left: 1rem;
padding-right: 1rem;
margin-bottom: 0;
@@ -546,11 +548,11 @@ nav > ul li {
margin-right: -1rem;
}
nav li.active > a {
#nav li.active > a {
color: var(--navbar-link-current-color);
}
nav > ul ul {
#nav > ul ul {
display: none;
}
@@ -1026,20 +1028,20 @@ pre > code {
#nav {
display: none;
}
nav ul {
#nav ul {
align-items: flex-start;
flex-direction: column;
height: auto;
}
nav > ul {
#nav > ul {
margin-bottom: 16px;
}
nav ul li {
#nav ul li {
padding: 0;
padding-top: 16px;
width: 100%;
}
nav ul a {
#nav ul a {
width: 100%;
display: block;
/* Make links easier to click but still close to each other. */

View File

@@ -0,0 +1,939 @@
---
---
// Fixes the parsing of the unusual front matter / SCSS file.
*{};
//
// Reset
//
ul {
line-height: unset;
padding-left: unset;
}
//
// Imports
//
@import "./details.css";
//
// Variables
//
$large-min-width: 1200px;
$mobile-max-width: 700px;
$mobile-sm-max-width: 450px;
$gap: 1.25rem;
$border-radius: 15px;
$element-meta-planning-bar-width: 15%;
$element-meta-ongoing-bar-width: 50%;
$color-background-light: #FFFFFF;
$color-background-dark: rgb(51, 54, 57);
$color-red: #f35774;
$color-category-level-1: hsl(206, 58%, 52%);
$color-category-level-2-light: rgb(165, 173, 200);
$color-category-level-2-dark: #202325;
$color-text-light: #4a5365;
$color-text-dark: rgba(255, 255, 255, 0.9);
$color-element-background-light:
adjust-color(#d5daea, $lightness: +7.5%);
$color-element-background-dark: adjust-color(#202325, $lightness: +2.5%);
@function create-outline-rule($outline-color) {
@return 0.125rem solid $outline-color;
}
$outline-color: #4080ff;
$outline: create-outline-rule($outline-color: $outline-color);
$outline-inverted: create-outline-rule($outline-color: adjust-color($color: invert($outline-color), $lightness: +10%));
$detail-color: (
note: (rgb(26, 127, 55), rgb(45, 175, 71)),
warning: (rgb(154, 103, 0), rgb(201, 135, 4)),
links: (rgb(9, 105, 218), rgb(34, 119, 247)),
trackers: (rgb(19, 136, 140), rgb(34, 240, 254)),
prs: (rgb(130, 80, 223), rgb(148, 94, 249)),
issues: (rgb(207, 34, 46), rgb(249, 62, 58)),
proposals: (rgb(207, 106, 34), rgb(246, 118, 58)),
);
//
// Functions
//
//
// Mixins
//
@mixin is-dark() {
@media screen and (prefers-color-scheme: dark) {
@content;
}
}
@mixin is-light() {
@media screen and (prefers-color-scheme: light) {
@content;
}
}
@mixin is-large() {
@media screen and (min-width: #{$large-min-width}) {
@content;
}
}
@mixin is-mobile() {
@media screen and (max-width: #{$mobile-max-width}) {
@content;
}
}
@mixin is-mobile-sm() {
@media screen and (max-width: #{$mobile-sm-max-width}) {
@content;
}
}
@mixin is-retina() {
@media screen and (min-resolution: 2x) {
@content;
}
}
// ---
@mixin anchor-icon($icon-color) {
.anchor-icon {
display: inline-block;
opacity: 0;
transition: opacity 0.2s ease-out;
$size: 0.8rem;
$min-size: 19px;
mask-image: url(/assets/icons/link.svg);
mask-size: 100% 100%;
mask-repeat: no-repeat;
height: $size;
width: $size;
min-height: $min-size;
min-width: $min-size;
background-color: $icon-color;
}
}
@mixin remove-markdown-margins() {
> p {
&:first-child {
margin-top: 0;
}
&:last-child {
margin-bottom: 0;
}
}
}
@mixin reset-lists() {
> ul {
// Force reset the style for the first list.
list-style-type: disc;
}
> ol {
// Force reset the style for the first list.
counter-reset: element-details-list-counter;
}
}
//
// General
//
:root {
scroll-behavior: smooth;
@media (prefers-reduced-motion) {
scroll-behavior: auto;
}
scroll-padding-top: $gap;
}
//
// Main content.
//
.priorities-container {
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
background-color: var(--card-background-color);
overflow: visible;
position: relative;
> .priorities-intro {
@mixin set-background($color, $url) {
$color-with-alpha: change-color($color, $alpha: 0.866667);
background:
linear-gradient(to right, $color-with-alpha, $color-with-alpha),
linear-gradient(to bottom, rgba(0,0,0,0) 25%, $color 100%),
url($url);
background-color: black;
background-size: cover, cover, cover;
background-repeat: repeat, repeat, repeat;
}
@mixin setup-background($color) {
@include set-background(
$color: $color,
$url: "/storage/priorities/images/page/map2-2048.webp"
);
@include is-retina() {
@include set-background(
$color: $color,
$url: "/storage/priorities/images/page/map2-4096.webp"
);
}
}
@include setup-background($color: $color-background-light);
@include is-dark() {
@include setup-background($color: $color-background-dark);
}
> .banner {
.container {
padding-top: 7rem;
// padding-bottom: 7rem;
h1 {
margin-bottom: 0;
}
.banner-last-updated {
.label {
.last-updated {
display: inline;
}
.recently-updated {
display: none;
font-weight: 600;
color: $color-red;
}
@at-root #{selector-replace(&, ".banner-last-updated", ".banner-last-updated.recent")} {
.last-updated {
display: none;
}
.recently-updated {
display: inline;
}
}
}
}
}
}
> .intro {
.intro-text {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: $gap;
margin-bottom: (3 * $gap);
@include is-mobile() {
grid-template-columns: 1fr;
gap: 0;
}
}
.wishlist-btns {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-areas:
"donate howto contact";
gap: $gap;
margin: (3 * $gap) 0;
font-weight: 600;
@include is-mobile() {
grid-template-columns: repeat(2, 1fr);
grid-template-areas:
"donate donate"
"howto contact";
}
@include is-mobile-sm() {
grid-template-columns: repeat(1, 1fr);
grid-template-areas:
"donate"
"howto"
"contact";
}
.donate {
grid-area: donate;
}
.howto {
grid-area: howto;
}
.contact {
grid-area: contact;
}
.wishlist-btn-anchor {
color: $color-red;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
.wishlist-btn-text {
display: flex;
justify-content: center;
align-items: center;
}
}
}
}
> .navigation {
top: 0px;
z-index: 1000;
background-color: $color-background-light;
@include is-dark() {
background-color: $color-background-dark;
}
margin: $gap 0;
-webkit-user-select: none;
user-select: none;
li {
list-style: none;
margin-bottom: 0;
}
.navigation-list-container {
position: relative;
.navigation-list {
margin: 0;
display: flex;
flex-direction: row;
justify-content: space-between;
gap: $gap;
@include is-mobile() {
display: grid;
grid-template-columns: 1fr 1fr;
}
@include is-mobile-sm() {
grid-template-columns: 1fr;
}
> li {
list-style: none;
flex-grow: 1;
width: 100%;
margin: 0;
.navigation-list-details {
.navigation-list-summary {
display: flex;
flex-direction: row;
// Disable toggling.
pointer-events: none;
-webkit-user-select: none;
user-select: none;
background-color: $color-element-background-light;
@include is-dark() {
background-color: $color-element-background-dark;
}
&:hover {
filter: brightness(117.5%);
@include is-light() {
filter: brightness(102%);
}
&:has(.label a:hover) {
filter: none;
}
}
border-radius: $border-radius;
width: calc(100% - #{$gap * 2});
height: 100%;
padding: $gap $gap;
cursor: pointer;
&::-webkit-details-marker {
display: none;
}
.label {
width: 100%;
flex-grow: 1;
a {
pointer-events: all;
}
}
.toggle {
// As we disabled the <details> tag, we remove the toggle icon visually.
display: none;
flex-grow: 0;
.more {
display: block;
}
.less {
display: none;
}
@at-root #{selector-replace(&, ".navigation-list-details", ".navigation-list-details[open]")} {
.more {
display: none;
}
.less {
display: block;
}
}
}
}
.navigation-sublist {
display: flex;
flex-direction: column;
gap: $gap / 4;
margin-top: $gap / 2;
margin-left: $gap;
}
}
}
}
}
}
// i.e. "core", "rendering", or "physics"
> .priorities {
display: flex;
flex-direction: column;
gap: $gap * 2;
padding: ($gap * 2) 0;
.category {
> .container {
> .category-details {
> .category-summary {
display: grid;
grid-template-areas:
"title anchor . icon";
grid-template-columns:
auto min-content 1fr min-content;
gap: $gap;
align-items: baseline;
border-radius: $border-radius;
padding: 1rem 2rem;
letter-spacing: -2px;
font-weight: 600;
color: white;
cursor: pointer;
line-height: 3rem;
list-style: none;
&::-webkit-details-marker {
display: none;
}
&:focus {
outline: none;
}
// .category.level-1
@at-root #{selector-replace(&, ".category", ".category.level-1")} {
font-size: 3rem;
background-color: $color-category-level-1;
}
// .category.level-2
@at-root #{selector-replace(&, ".category", ".category.level-2")} {
font-size: 2.125rem;
background-color: $color-category-level-2-light;
@include is-dark() {
background-color: $color-category-level-2-dark;
}
@include is-light() {
&:hover {
filter: brightness(105%);
}
}
}
&:hover {
filter: brightness(117.5%);
}
> .category-anchor-container {
grid-area: anchor;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
> .category-anchor {
display: block;
position: relative;
text-decoration: none;
color: white;
.anchor-icon {
@at-root #{selector-replace(&, ".category-summary", ".category-summary:hover")} {
opacity: 0.6;
}
@at-root #{selector-replace(&, ".category-anchor", ".category-anchor:focus")} {
opacity: 0.6;
}
}
&:focus {
outline: $outline-inverted;
}
$anchor-icon-color: white;
@include anchor-icon($icon-color: white);
}
}
.category-title {
grid-area: title;
position: relative;
margin-bottom: 0;
@at-root #{selector-replace(&, ".category-summary", ".category-summary:focus")} {
outline: $outline-inverted;
}
.category-title-text {
flex-grow: 1;
width: 100%;
color: white;
@include remove-markdown-margins();
}
.recent-icon {
display: block;
position: absolute;
$size: 0.75rem;
width: $size;
height: $size;
border-radius: $size;
top: ($size / 4);
left: -(($size / 4) * 3);
background-color: $color-red;
}
}
.category-accordion-toggle {
grid-area: icon;
.more {
display: block;
}
.less {
display: none;
}
@at-root #{selector-replace(&, ".category-details", ".category-details[open]")} {
.more {
display: none;
}
.less {
display: block;
}
}
}
}
}
.category-content {
.element-list {
display: grid;
grid-template-columns: 1fr;
gap: $gap;
@include is-large() {
grid-template-columns: 1fr 1fr;
}
padding-left: 0;
margin-bottom: 0;
> .element-list-item {
list-style: none;
margin-bottom: 0;
> .element {
display: grid;
grid-template-areas:
"main";
grid-template-columns: auto;
grid-template-rows: auto;
gap: $gap;
border-radius: $border-radius;
background-color: $color-element-background-light;
@include is-dark() {
background-color: $color-element-background-dark;
}
padding: 1.25rem 0;
@include is-mobile() {
grid-template-areas:
"main";
grid-template-columns: auto;
grid-template-rows: auto;
}
.element-main {
grid-area: main;
.element-title {
display: grid;
grid-template-areas:
"text toggle";
grid-template-columns:
1fr min-content;
align-items: stretch;
gap: $gap;
cursor: pointer;
border-radius: $border-radius;
color: $color-text-light;
@include is-dark() {
color: $color-text-dark;
}
background-color: $color-element-background-light;
@include is-dark() {
background-color: $color-element-background-dark;
}
margin-top: -$gap;
margin-bottom: -$gap;
padding: $gap;
&:focus {
outline: none;
}
&:hover {
filter: brightness(117.5%);
@include is-light() {
filter: brightness(102%);
}
}
list-style: none;
&::-webkit-details-marker {
display: none;
}
.text {
grid-area: text;
display: flex;
flex-direction: row;
align-items: center;
gap: 0.5rem;
}
.element-title-container {
display: inline-block;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
.element-title-anchor {
flex-grow: 0;
display: flex;
flex-direction: row;
align-items: center;
text-decoration: none;
@include anchor-icon($icon-color: $color-text-light);
@include is-dark() {
@include anchor-icon($icon-color: $color-text-dark);
}
@at-root #{selector-replace(&, ".element-title", ".element-title:hover")},
&:focus {
.anchor-icon {
opacity: 0.6;
}
}
}
.element-title-text {
flex-grow: 1;
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
font-weight: 700;
@include remove-markdown-margins();
@at-root #{selector-replace(&, ".element-title", ".element-title:focus")} {
outline: $outline;
}
}
}
.element-accordion-toggle {
grid-area: toggle;
flex-grow: 0;
display: flex;
flex-direction: row;
align-items: center;
.less {
display: none;
}
.more {
display: block;
}
@at-root #{selector-replace(&, ".element-main", ".element-main[open]")} {
.less {
display: block;
}
.more {
display: none;
}
}
}
}
.element-content {
display: flex;
flex-direction: column;
gap: $gap;
padding: 0 $gap;
padding-top: $gap;
.element-description {
font-size: 1rem;
@include remove-markdown-margins();
}
.element-details {
display: flex;
flex-direction: column;
gap: $gap;
&:empty {
display: none;
}
font-size: 0.9rem;
.detail-block {
@mixin parent-is-type($current-selector, $type) {
@at-root #{selector-replace($current-selector, ".detail-block", ".detail-block.#{$type}")} {
@content;
}
}
padding: 1rem 0 1rem 2rem;
border-left: 2px solid;
border-left-color: var(--detail-color);
p {
&:first-child {
margin-top: 0;
}
&:last-child {
margin-bottom: 0;
}
}
ul {
padding-left: 1.5rem;
li {
margin-bottom: 0.45rem;
}
&:last-child {
li:last-child {
margin-bottom: 0;
}
}
}
a {
color: $color-text-light;
text-decoration-color: $color-text-light;
@include is-dark() {
color: $color-text-dark;
text-decoration-color: $color-text-dark;
}
}
@include reset-lists();
// Detail types.
@each $type in ("note", "warning", "links", "trackers", "prs", "issues", "proposals") {
&.#{$type} {
--detail-color: #{nth(map-get($detail-color, $type), 1)};
@include is-dark() {
--detail-color: #{nth(map-get($detail-color, $type), 2)};
}
}
}
.detail-block-header {
display: flex;
flex-direction: row;
align-items: center;
gap: $gap / 2;
margin-bottom: $gap / 2;
font-weight: bolder;
color: var(--detail-color);
.icon {
@mixin octicon($icon-url) {
display: inline-block;
width: 24px;
height: 24px;
mask-size: 24px;
mask-position: center;
mask-image: url($icon-url);
background-color: currentColor;
}
span[class^="godot-icon-"], span[class*=" godot-icon-"] {
font-size: 150%;
}
}
}
.detail-block-content {
@include reset-lists();
}
}
}
}
.element-edit {
&:empty {
display: none;
}
font-size: 0.75rem;
font-style: italic;
color: adjust-color($color-text-light, $alpha: -0.33);
@include is-dark() {
color: adjust-color($color-text-dark, $alpha: -0.33);
}
.element-edit-title {
font-weight: 500;
}
.element-edit-entries {
font-style: normal;
border-collapse: collapse;
.element-edit-entry {
vertical-align: baseline;
.element-edit-entry-time {
margin-right: 1rem;
}
.element-edit-entry-content {
@include remove-markdown-margins();
}
}
}
}
}
}
}
}
}
}
}
}
}
#scroll-to-top {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
pointer-events: none;
--card-padding: $gap;
@include is-mobile() {
--card-padding: $gap / 2;
}
.link {
pointer-events: all;
position: fixed;
bottom: $gap;
right: $gap;
width: 50px;
height: 50px;
margin: var(--card-padding);
text-decoration: none;
background-color: white;
border-radius: $border-radius;
display: flex;
align-items: center;
justify-content: center;
box-shadow: rgba(0,0,0,25%) 1px 1px 5px;
color: black;
font-size: 1.5em;
&:hover {
span {
font-size: 35px;
}
}
span {
transition: font-size 0.2s ease-out;
transform:
translateY(-3px);
}
}
}

View File

@@ -0,0 +1,65 @@
/**
* This file is a workaround for our version of Sass (1.77.5)
* not supporting `@supports selector()`
*/
@keyframes opening {
from {
transform:
translateY(-50px);
opacity: 0;
}
to {
transform:
translateY(0);
opacity: 1;
}
}
/**
* This enables the smooth open/close of details in supported browsers.
*/
@supports selector(details::details-content) and (interpolate-size: allow-keywords) and (content-visibility: visible) {
.priorities-container {
interpolate-size: allow-keywords;
}
.priorities-container details {
padding: 2px;
}
.priorities-container details::details-content {
height: 0;
transition:
height 0.3s ease,
content-visibility 0.3s allow-discrete ease;
content-visibility: hidden;
overflow: hidden;
}
.priorities-container details[open]::details-content {
height: auto;
content-visibility: visible;
}
@starting-style {
.priorities-container details::details-content {
height: 0;
}
}
}
/**
* This is the fallback on non-supported browsers.
*/
@supports not (selector(details::details-content) and (interpolate-size: allow-keywords) and (content-visibility: visible)) {
details > summary {
z-index: 100;
}
details.opening > *:not(summary) {
animation:
opening 0.3s ease;
}
}

View File

@@ -0,0 +1,5 @@
---
---
// Fixes the parsing of the unusual front matter / SCSS file.
*{};

View File

@@ -30,18 +30,6 @@ $mobile-max-width: 700px;
}
}
@mixin is-dark() {
@media screen and (prefers-color-scheme: dark) {
@content;
}
}
@mixin is-light() {
@media screen and (prefers-color-scheme: light) {
@content;
}
}
$anchor-offset: 75px;
$header-background-color: #25282B;

View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2024 GitHub Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M7.72.22a.75.75 0 0 1 1.06 0l1.204 1.203A4.98 4.98 0 0 1 12 1c.717 0 1.4.151 2.016.423L15.22.22a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-.971.972A4.991 4.991 0 0 1 17 6v1.104a2.755 2.755 0 0 1 1.917 1.974l1.998-.999a.75.75 0 0 1 .67 1.342L19 10.714V13.5l3.25.003a.75.75 0 0 1 0 1.5L19 15.001V16c0 .568-.068 1.134-.204 1.686l.04.018 2.75 1.375a.75.75 0 1 1-.671 1.342l-2.638-1.319A6.998 6.998 0 0 1 12 23a6.998 6.998 0 0 1-6.197-3.742l-2.758 1.181a.752.752 0 0 1-1.064-.776.752.752 0 0 1 .474-.602l2.795-1.199A6.976 6.976 0 0 1 5 16v-.996H1.75a.75.75 0 0 1 0-1.5H5v-2.79L2.415 9.42a.75.75 0 0 1 .67-1.342l1.998.999A2.756 2.756 0 0 1 7 7.104V6a4.99 4.99 0 0 1 1.69-3.748l-.97-.972a.75.75 0 0 1 0-1.06ZM6.5 9.75V16a5.5 5.5 0 1 0 11 0V9.75c0-.69-.56-1.25-1.25-1.25h-8.5c-.69 0-1.25.56-1.25 1.25ZM8.5 7h7V6a3.5 3.5 0 1 0-7 0Z"/></svg>

After

Width:  |  Height:  |  Size: 931 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M16 19.25a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Zm-14.5 0a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Zm0-14.5a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0ZM4.75 3a1.75 1.75 0 1 0 .001 3.501A1.75 1.75 0 0 0 4.75 3Zm0 14.5a1.75 1.75 0 1 0 .001 3.501A1.75 1.75 0 0 0 4.75 17.5Zm14.5 0a1.75 1.75 0 1 0 .001 3.501 1.75 1.75 0 0 0-.001-3.501Z"/><path d="M13.405 1.72a.75.75 0 0 1 0 1.06L12.185 4h4.065A3.75 3.75 0 0 1 20 7.75v8.75a.75.75 0 0 1-1.5 0V7.75a2.25 2.25 0 0 0-2.25-2.25h-4.064l1.22 1.22a.75.75 0 0 1-1.061 1.06l-2.5-2.5a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 0ZM4.75 7.25A.75.75 0 0 1 5.5 8v8A.75.75 0 0 1 4 16V8a.75.75 0 0 1 .75-.75Z"/></svg>

After

Width:  |  Height:  |  Size: 751 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M15.716 1.329a1.341 1.341 0 0 1 2.109 1.55L15.147 9h4.161c1.623 0 2.372 2.016 1.143 3.075L8.102 22.721a1.148 1.148 0 0 1-1.81-1.317L8.996 15H4.674c-1.619 0-2.37-2.008-1.148-3.07l12.19-10.6Zm.452 1.595L4.51 13.061a.25.25 0 0 0 .164.439h5.45a.749.749 0 0 1 .692 1.041l-2.559 6.066 11.215-9.668a.25.25 0 0 0-.164-.439H14a.75.75 0 0 1-.687-1.05Z"/></svg>

After

Width:  |  Height:  |  Size: 442 B

File diff suppressed because one or more lines are too long

210
assets/js/priorities.mjs Normal file
View File

@@ -0,0 +1,210 @@
import { gsap } from "./modules/gsap@3.12.5.min.mjs";
// If we need to add a search bar, use this next line:
// import Fuse from "./modules/fuse.js@7.0.0.min.mjs";
// =====================
// Blank target to links
// =====================
/**
* Adds `target="_blank"` to element links. This will open links in a new window.
* @returns {void}
*/
function addBlankTargetToElementLinks() {
for (const anchor of document.querySelectorAll(".element-content a")) {
if (!(anchor instanceof HTMLAnchorElement)) {
continue;
}
anchor.target = "_blank";
}
}
// =============
// Scroll to top
// =============
/**
* Setups scroll to top functionality.
* @returns {void}
*/
function setupScrollToTop() {
const navElement = document.querySelector("#priorities-navigation");
const scrollToTopElement = document.querySelector("#scroll-to-top");
let scrollToTopTween = null;
let scrollState = "";
const showScrollToTop = () => {
if (scrollState === "show") {
return;
}
scrollState = "show";
if (scrollToTopTween != null) {
scrollToTopTween.kill();
}
scrollToTopElement.style.display = "block";
scrollToTopTween = gsap.to(scrollToTopElement, {
opacity: 1,
duration: 0.5,
});
};
const hideScrollToTop = () => {
if (scrollState === "hide") {
return;
}
scrollState = "hide";
if (scrollToTopTween != null) {
scrollToTopTween.kill();
}
scrollToTopTween = gsap.to(scrollToTopElement, {
opacity: 0,
duration: 0.5,
onComplete: () => {
scrollToTopElement.style.display = "none";
}
});
};
const scrollToTopObserver = new IntersectionObserver((entries, observer) => {
const entry = entries[0];
if (entry.isIntersecting) {
hideScrollToTop();
} else {
const rect = navElement.getBoundingClientRect();
if (rect.y > window.innerHeight) {
hideScrollToTop();
} else {
showScrollToTop();
}
}
});
scrollToTopObserver.observe(navElement);
}
// ============================
// Open details selected in URL
// ============================
/**
* If there's a hash to the URL, make sure that the appropritate details tag is open.
* @returns {void}
*/
function openDetailsSelectedInUrl() {
if (window.location.hash === "") {
return;
}
/** @type {HTMLDetailsElement | null} */
const element = document.querySelector(`${window.location.hash} details.element-main`);
if (element == null) {
return;
}
element.open = true;
}
// ========================
// Handle navigation events
// ========================
/**
* Opens the current hash when the navigation changes.
* The API is still quite new, not supported by some browsers. (2024-11-21)
* @returns {void}
*/
function handleNavigateEvent() {
// The API is not yet supported by all browsers.
if (!("Navigation" in window)) {
//openOnHandleClick();
handleHashChangeEvent();
return;
}
/**
* @param {NavigateEvent} event
*/
navigation.addEventListener("navigate", (event) => {
const url = new URL(event.destination.url);
/** @type {HTMLDetailsElement | null} */
const element = document.querySelector(`${url.hash} details.element-main`);
if (element == null) {
return;
}
element.open = true;
});
}
/**
* More common API, listens to "hashchange" event.
* @returns {void}
*/
function handleHashChangeEvent() {
window.addEventListener("hashchange", () => {
/** @type {HTMLDetailsElement | null} */
const element = document.querySelector(`${window.location.hash} details.element-main`);
if (element == null) {
return;
}
element.open = true;
});
}
// =================
// Animate <details>
// =================
function animateDetailsTag() {
const prioritiesContainer = document.querySelector(".priorities-container");
if (!(prioritiesContainer instanceof HTMLElement)) {
throw new Error("Couldn't find .priorities-container");
}
/**
* Triggered on opening animation end.
* @param {AnimationEvent} event
*/
const onAnimationEnd = (event) => {
let target = event.target;
while (true) {
if (!(target instanceof HTMLElement)) {
return;
}
if (target instanceof HTMLDetailsElement) {
break;
}
target = target.parentElement;
}
target.classList.remove("opening");
};
const mutationObserver = new MutationObserver((mutationList, _) => {
for (const mutation of mutationList) {
const target = mutation.target;
if (!(target instanceof HTMLDetailsElement)) {
continue;
}
if (mutation.attributeName === "open") {
target.removeEventListener("animationend", onAnimationEnd);
if (target.open) {
// Just opened.
target.classList.add("opening");
target.addEventListener("animationend", onAnimationEnd);
} else {
target.classList.remove("opening");
}
}
}
});
mutationObserver.observe(prioritiesContainer, { attributes: true, subtree: true });
}
// ====
// Main
// ====
/**
* Main function.
*/
function main() {
addBlankTargetToElementLinks();
setupScrollToTop();
openDetailsSelectedInUrl();
handleNavigateEvent();
animateDetailsTag();
}
main();

View File

@@ -0,0 +1,10 @@
---
category: android
rank: 0
state: "active"
anchor: "improve-debugging-of-reports-from-google-play"
title: "Improve debugging of reports from the Google Play console"
description: |
When your game launches on Google Play, you will start to get automated reports from players highlighting issues like freezes, crashes, or poor performance. Right now that information is hard to make sense of due to the lack of debug symbols. We want to make it easier for users to utilize these reports either by providing debug symbols, or streamlining the process for developers to upload debug symbols themselves.
details:
---

View File

@@ -0,0 +1,17 @@
---
category: android
rank: 1
state: "active"
anchor: "add-support-for-external-textures-for-ar-core"
title: "Add support for external textures for AR Core"
description: |
External textures are textures where their data comes from an external source. For AR, it means getting the camera feed (or anything that can be rendered) from the host operating system and displaying it over in Godot.
details:
- type: note
content: |
Link for the [AR Core plugin for Android](https://github.com/godotvr/godot_arcore).
- type: prs
content: |
- [Add external texture support (GLES3) #96982](https://github.com/godotengine/godot/pull/96982)
- [Add external texture support (Vulkan) #97163](https://github.com/godotengine/godot/pull/97163)
---

View File

@@ -0,0 +1,22 @@
---
category: animation
rank: 0
state: "active"
anchor: "improve-and-polish-new-skeletonmodifier3d"
title: "Improve and polish new SkeletonModifier3D"
description: |
The `SkeletonModifier3D` abstract node [introduced in 4.3](https://godotengine.org/releases/4.3/#animation-skeletonmodifier3d-node) helps users to modify and add new functionality to bones via script. We want to build upon that new structure to add new features to it.
details:
- type: note
content: |
We identified at least two features that we wish to add
- Add a bone constraint (based on the Blender spec)
- Add spring bones (based on the VRM1 spec)
- type: proposals
content: |
- [Implement Skeleton re-targeting node #3379](https://github.com/godotengine/godot-proposals/issues/3379)
- type: prs
content: |
- [Add RetargetModifier3D for realtime retarget to keep original rest #97824](https://github.com/godotengine/godot/pull/97824)
- [Implement LookAtModifier3D #98446](https://github.com/godotengine/godot/pull/98446)
---

View File

@@ -0,0 +1,10 @@
---
category: animation
rank: 1
state: "active"
anchor: "overhaul-skeleton2d-animation"
title: "Overhaul `Skeleton2D` animation"
description: |
While the experience of dealing with 3D skeletons improved greatly upon the years, the same cannot be said of the 2D one. Our wish is to overhaul `Skeleton2D` animation in order to make it easier to animate and develop complex 2D figures.
details:
---

View File

@@ -0,0 +1,18 @@
---
category: assetio
rank: 0
state: "active"
anchor: "improve-compatibility-with-blender"
title: "Improve compatibility with Blender"
description: |
As [Blender](https://blender.org/) is both a FOSS and a very popular 3D editor choice by the majority of our users, it makes sense to improve compatibility with it. You can already import `.blend` files, but its limited to models, textures, lights, and cameras.
Godot imports `.blend` files by calling into Blender and asking Blender to export a `.gltf` file, which Godot then imports. Therefore, everything we want to export from Blender needs to be exported to the glTF data, including glTF extensions, and then Godot needs to import those, all in order for that data to make its way to Godot.
details:
- type: note
content: |
For materials, [Khronos](https://www.khronos.org/) has a [selection of material extensions](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Khronos). Improving compatibility with Blender materials will require Blender exporting data using these extensions, and then Godot adding support for it.
- type: note
content: |
For constraints, VRM has a series of glTF extensions that add feature to glTF, including [`VRMC_node_constraint`](https://github.com/vrm-c/vrm-specification/tree/master/specification/VRMC_node_constraint-1.0) which adds aim, roll, and rotation constraints. However, note that Khronos and VRM recently announced a collaboration, so some of this functionality may end up being replaced by Khronos extensions. Also, users do not have to wait if they want this feature - [a GDScript implementation of VRM](https://github.com/V-Sekai/godot-vrm) is available thanks to [@lyuma](https://github.com/lyuma).
---

View File

@@ -0,0 +1,10 @@
---
category: assetio
rank: 1
state: "active"
anchor: "improve-import-dialog"
title: "Improve import dialog to provide more control over imported resources"
description: |
Godot currently has an advanced import dialogue which allows you to tweak many properties while importing assets. We want to polish and expand this dialogue to be more powerful. At the very least we would like to improve the preview lighting, expose more tools for material editing, and expose many more common properties.
details:
---

View File

@@ -0,0 +1,13 @@
---
category: assetio
rank: 2
state: "active"
anchor: "add-preview-icons-on-imported-scenes"
title: "Add preview icons on imported scenes"
description: |
Currently, imported scenes (such as `.glb`, `.fbx`, and `.blender` files) show the scene icon in the FileSystem tab, making it difficult to filter out these files. Showing a preview icon of the scene would greatly help users in their workflow.
details:
- type: prs
content: |
- [Generate thumbnails on imported scenes. #96544](https://github.com/godotengine/godot/pull/96544)
---

View File

@@ -0,0 +1,10 @@
---
category: assetio
rank: 3
state: "active"
anchor: "improve-importer-performance"
title: "Improve importer performance"
description: |
As users create larger games with more assets, we need to continue improving the performance of our importer to ensure that users spend as little time waiting for import as possible.
details:
---

View File

@@ -0,0 +1,13 @@
---
category: assetio
rank: 4
state: "active"
anchor: "make-scene-inheritance-more-robust"
title: "Make scene inheritance more robust"
description: |
Scene inheritance is the concept of creating a scene based on an existing one. It is a feature that should work well in theory, but can be quite finicky in reality.
details:
- type: note
content: |
One idea is to give nodes unique IDs. See [KhronosGroup/glTF#2337](https://github.com/KhronosGroup/glTF/issues/2337).
---

View File

@@ -0,0 +1,13 @@
---
category: core
rank: 0
state: "active"
anchor: "overhaul-addon-startup"
title: "Overhaul addon startup"
description: |
As the community grows and uses more and more add-ons, we found out that the current add-on startup logic is reaching its limits, as sometimes, you need to reload the editor for new add-ons to work. Thats why we intend to overhaul it to make the experience seamless.
details:
- type: note
content: |
Some research and optimization is needed for the editor file system access. We need to optimize all file access extensions. Ultimately, we need to rethink the current system in order to overhaul it.
---

View File

@@ -0,0 +1,10 @@
---
category: core
rank: 1
state: "active"
anchor: "reliable-headless-command-line-export"
title: "Reliable headless command line export"
description: |
As bigger projects often rely on CI (continuous integration) to test and deploy their projects, they need to be able to export games from lean environments that dont implement a graphical interface (headless). For this, we need to make headless command line export more reliable, as theres currently some issues that prevent it from working flawlessly.
details:
---

View File

@@ -0,0 +1,13 @@
---
category: core
rank: 2
state: "active"
anchor: "improve-performance-of-scene-multithreading"
title: "Improve performance of scene multithreading"
description: |
We put a lot of effort lately to add ways to split the work of nodes into multiple threads. This can lead to great leaps in terms of performance. Unfortunately, many nodes are structured in a way that makes it difficult for them to take advantage of multiple threads. We need to audit our current nodes and fix the ones that are relying on being single threaded.
details:
- type: note
content: |
As part of this work we need to create high quality tests and benchmarks. Both to ensure that we do not break anything, but also to validate the performance improvements.
---

View File

@@ -0,0 +1,13 @@
---
category: core
rank: 3
state: "active"
anchor: "make-optimizations-throughout-the-core"
title: "Make optimizations throughout the core"
description: |
Much of the engine would benefit from a careful evaluation of the current performance bottlenecks and improvements to ensure that it is running as fast as possible. Godot 4.0 drastically improved the overall architecture of Godot, but there is still a lot of legacy code that is not benefitting from the architectural improvements. We need to seek out those areas and fix them.
details:
- type: note
content: |
To aid in this, we want to create more educational materials on profiling performance issues (both for CPU and GPU workloads).
---

View File

@@ -0,0 +1,15 @@
---
category: core
rank: 4
state: "active"
anchor: "create-more-benchmarks"
title: "Create more benchmarks"
description: |
In order to make the best decisions, we need to rely on measurable data. In order to be able to do this, we need to create more benchmarks. It gives the added benefit over time that we can spot regressions more easily, together with unit tests, as we started lately to track performance of nightly builds.
details:
- type: note
content: |
We do have a public benchmark page! You can follow Godot's main branch performance on the following website:
[https://benchmarks.godotengine.org/](https://benchmarks.godotengine.org/)
---

View File

@@ -0,0 +1,10 @@
---
category: dotnet
rank: 0
state: "active"
anchor: "enable-users-to-export-their-csharp-projects-on-the-web"
title: "Enable users to export their C# projects on the Web"
description: |
The technology stars seem to align in order to enable us to export C# projects on the Web. We fully intend to make this a reality as soon as possible.
details:
---

View File

@@ -0,0 +1,12 @@
---
category: dotnet
rank: 1
state: "active"
anchor: "deprecate-dotnet-godot-builds-for-a-dotnet-plugin"
title: "Deprecate .NET Godot builds for a .NET plugin"
description: |
For the time being, users are required to download an entirely separate Godot build in order to use C# features. With our new upcoming .NET module, we intend to support C# with a simple plugin.
Everyone wins, as users wont have to choose a special version to run C#. It reduces the number of builds on our side by half. Also, it will simplify .NET maintenance.
details:
---

View File

@@ -0,0 +1,12 @@
---
category: dotnet
rank: 2
state: "active"
anchor: "host-a-dotnet-specific-documentation-website"
title: "Host a .NET-specific documentation website"
description: |
While the API documentation is complete, it currently lacks a specific .NET API. Both for newcomers and experienced users, it can be difficult or imprecise to translate the GDScript/C++ API to C#.
We intend to host a new website that will host an API documentation oriented for .NET users.
details:
---

View File

@@ -0,0 +1,16 @@
---
category: editor
rank: 0
state: "active"
anchor: "make-the-editor-resilient-to-file-changes"
title: "Make the editor resilient to files changed/added externally"
description: |
Godot doesnt know how to handle project file changes that happen on non-imported files, such as scripts, when it happens outside of the editor. This can be a common occurrence for users that use an external code editor. This can lead to numerous errors and inconveniences, such as scenes refusing to load. We intend to make this a relic of the past.
details:
- type: note
content: |
We introduced recently UIDs to non-imported files, such as scripts, in Godot 4.4.dev5. We need testing though to fully make sure that it solves our issues.
- type: prs
content: |
- [Universalize UID support in all resource types #97352](https://github.com/godotengine/godot/pull/97352)
---

View File

@@ -0,0 +1,15 @@
---
category: editor
rank: 1
state: "active"
anchor: "provide-some-way-to-access-internal-subresources-of-imported-scenes"
title: "Provide some way to access internal subresources of imported scenes"
description: |
Some file formats are actually containers that hold multiple resources. FBX and GLTF files are one of these, as they not only contain 3D models, but also can contain animations and textures. Currently, the only way to expose these resources is to tell the editor to pull these out on import.
We are thinking about providing a way to users to access internal subresources.
details:
- type: proposals
content: |
- [Add ability to reference subresources and inspect them in filesystem #8750](https://github.com/godotengine/godot-proposals/issues/8750)
---

View File

@@ -0,0 +1,13 @@
---
category: editor
rank: 2
state: "active"
anchor: "implement-gdscript-refactoring-tools"
title: "Implement GDScript refactoring tools"
description: |
A lot of modern IDEs offer refactoring tools in order to rename variables and symbols across the codebase. We intend to add this feature to our internal GDScript code editor.
details:
- type: proposals
content: |
- [Add "refactor" tooling to rename symbols in the script editor #899](https://github.com/godotengine/godot-proposals/issues/899)
---

View File

@@ -0,0 +1,13 @@
---
category: editor
rank: 3
state: "active"
anchor: "implement-editor-support-for-creating-updating-source-code-for-gdextensions"
title: "Implement editor support for creating/updating source code for GDExtensions"
description: |
Right now the editor is not able to open or edit GDExtension classes. It effectively treats them like binary blobs. We want to make opening and editing GDExtension classes easier to do from within the engine and provide some of the comforts from regular scripting to GDExtension.
details:
- type: proposals
content: |
- [Allow creating GDExtension plugins from inside the Godot editor #90979](https://github.com/godotengine/godot/pull/90979)
---

View File

@@ -0,0 +1,16 @@
---
category: gdextension
rank: 0
state: "active"
anchor: "allow-compiling-godot-as-a-library"
title: "Allow compiling Godot as a library that can be loaded and used by other applications"
description: |
Currently, the engines capabilities are only accessible if the application itself is a Godot application. However, there are many situations where an application might want to use Godot as an intermediary. One case would be an application that uses native OS API for its UI, but needs Godot to render a complex 3D scene. Our goal is to make Godot available as a library to expand the possible uses of the engine.
details:
- type: note
content: |
This feature is better known as "LibGodot".
- type: prs
content: |
- [Migeran LibGodot Feature #90510](https://github.com/godotengine/godot/pull/90510)
---

View File

@@ -0,0 +1,10 @@
---
category: gdextension
rank: 1
state: "active"
anchor: "allow-gdextensions-to-communicate-with-one-another"
title: "Allow GDExtensions to communicate with one another"
description: |
GDExtension was created to allow developers to create extensions as if they were coding a module directly in Godots source code. Currently, modules can depend on one another, but this is not yet possible for extensions. We aim to expose the necessary API to be able to. So, for example, an extension built with [godot-rust](https://godot-rust.github.io/) would be able to extend an extension built with [godot-cpp](https://github.com/godotengine/godot-cpp).
details:
---

View File

@@ -0,0 +1,13 @@
---
category: gdextension
rank: 2
state: "active"
anchor: "add-the-ability-to-enable-disable-gdextensions-in-project-settings"
title: "Add the ability to enable/disable GDExtensions in project settings"
description: |
For the time being, there's no way to disable a GDExtension from a project without deleting the related files themselves. We plan to create a dialog akin to the Plugin tab in the Project settings in order to easily enable and disable GDExtensions.
details:
- type: prs
content: |
- [Allow creating GDExtension plugins from inside the Godot editor #90979](https://github.com/godotengine/godot/pull/90979)
---

View File

@@ -0,0 +1,15 @@
---
category: gdscript
rank: 0
state: "active"
anchor: "polish-and-ensure-that-classname-is-robust"
title: "Polish and ensure that `class_name` is robust and works in all cases"
description: |
`class_name` is an handy feature. It permits the user to name their classes and refer to it directly instead of having to preload the class using its path.
Unfortunately, using `class_name` comes with a few caveats. We do hope to fix these issues in order to give users a better experience with this feature.
details:
- type: trackers
content: |
- [[TRACKER] GDScript `class_name` #99766](https://github.com/godotengine/godot/issues/99766)
---

View File

@@ -0,0 +1,15 @@
---
category: gdscript
rank: 1
state: "active"
anchor: "attain-full-coverage-of-static-type-hints"
title: "Attain full coverage of static type hints"
description: |
Static type hints are a well loved feature in GDScript, as not only does it improve performance, but it lowers the amount of possible typing issues.
We intend to implement static typing for areas that currently lack them. We are thinking about typed dictionaries (already merged for 4.4) and enforcing the typing of signals.
details:
- type: prs
content: |
- [Implement typed dictionaries #78656](https://github.com/godotengine/godot/pull/78656)
---

View File

@@ -0,0 +1,13 @@
---
category: gdscript
rank: 2
state: "active"
anchor: "improve-performance-via-compilation"
title: "Improve performance via compilation"
description: |
While GDScript is fast enough to operate as glue between nodes and program basic logic, its performance is lackluster when it comes to pure data crunching. We would like to improve the processing capabilities of the language and its run-time.
details:
- type: note
content: |
Were currently investigating whether to compile GDScript, or to use [AOT (ahead-of-time)](https://en.wikipedia.org/wiki/Ahead-of-time_compilation) or [JIT (just-in-time)](https://en.wikipedia.org/wiki/Just-in-time_compilation) compilation techniques.
---

View File

@@ -0,0 +1,13 @@
---
category: gdscript
rank: 3
state: "active"
anchor: "add-traits-to-gdscript"
title: "Add traits to GDScript"
description: |
The main way to reuse code when writing code in GDScript is to use inheritance. While it works well for the most part, it leaves developers to rewrite a lot of code when that method cannot be used. So traits is the path were going forward to solve that issue.
details:
- type: proposals
content: |
- [Add a Trait system for GDScript #6416](https://github.com/godotengine/godot-proposals/issues/6416)
---

View File

@@ -0,0 +1,10 @@
---
category: linuxbsd
rank: 0
state: "active"
anchor: "multi-window-support-for-wayland-compositor"
title: "Multi window support for Wayland compositor"
description: |
Right now the Wayland compositor is limited to making use of a single window. In order to achieve parity with other platforms, we need to add support for creating multiple windows.
details:
---

View File

@@ -0,0 +1,13 @@
---
category: physics
rank: 0
state: "active"
anchor: "integrate-jolt-as-the-default-3d-physics-engine"
title: "Integrate Jolt as the default 3D physics engine"
description: |
[Jolt](https://github.com/jrouwe/JoltPhysics) is an open-source (MIT licensed) modern, multi core friendly rigid body physics and collision detection library, tailor-made for video games. We want to make it available to users by default, the current GodotPhysics 3D engine would still be available as an option.
details:
- type: prs
content: |
- [Add Jolt Physics as an alternative 3D physics engine #99895](https://github.com/godotengine/godot/pull/99895)
---

View File

@@ -0,0 +1,17 @@
---
category: physics
rank: 1
state: "active"
anchor: "adapt-the-way-godot-exposes-physics-to-mirror-jolt"
title: "Adapt the way Godot exposes physics to mirror Jolt"
description: |
As much as our nodes are made to be compatible with multiple physics engines, the existing integration of Jolt (via the [godot-jolt](https://github.com/godot-jolt/godot-jolt) add-on) is not optimal, as there are numerous features that cant be implemented in Godot due to the current way the system works. In addition to integrating Jolt as the default 3D physics engine, we want to modernize our node bindings in order to fully exploit the new library.
details:
- type: warning
content: |
We do expect it will create some compatibility issues.
- type: proposals
content: |
- [Add per-shape collision filtering to the 3D physics system #7400](https://github.com/godotengine/godot-proposals/issues/7400)
- [Add per-shape physics materials to the 3D physics system #7401](https://github.com/godotengine/godot-proposals/issues/7401)
---

View File

@@ -0,0 +1,13 @@
---
category: platforms
rank: 0
state: "active"
anchor: "add-screen-reader-support-using-accesskit-integration"
title: "Add screen reader support using AccessKit integration"
description: |
[AccessKit](https://github.com/AccessKit/accesskit) offers a cross-platform way to implement accessibility features for UI toolkits, such as Godot. Integrating screen reader support into Godot will offer us and game developers opportunities to make more accessible products, such as the Godot Editor itself or games made with Godot.
details:
- type: prs
content: |
- [Implement screen reader support using AccessKit library. #76829](https://github.com/godotengine/godot/pull/76829)
---

View File

@@ -0,0 +1,13 @@
---
category: platforms
rank: 1
state: "active"
anchor: "investigate-delays-in-window-creation"
title: "Investigate delays in Window creation"
description: |
It is known that compared to Godot 3.x, theres some delays while creating new `Window`, especially on Windows.
details:
- type: issues
content: |
- [Godot 4 editor UI (menus) significantly slower than 3.x #71795](https://github.com/godotengine/godot/issues/71795)
---

View File

@@ -0,0 +1,16 @@
---
category: platforms
rank: 2
state: "active"
anchor: "distribute-separate-debug-symbols"
title: "Distribute separate debug symbols"
description: |
Debug symbols allow developers to obtain more information when Godot crashes or logs an error. Currently, developers will only have debug symbols if they compile the engine from scratch. By distributing debug symbols for the official builds, developers would be able to easily diagnose crashes without making a custom build of the engine.
details:
- type: note
content: |
For all platforms that support separated debug symbols.
- type: proposals
content: |
- [Distribute official builds with full debugging symbols #1342](https://github.com/godotengine/godot-proposals/issues/1342)
---

View File

@@ -0,0 +1,16 @@
---
category: platforms
rank: 3
state: "active"
anchor: "improve-gamepad-support"
title: "Improve gamepad support"
description: |
We often receive issue reports about gamepad support, as the numbers of gamepads never cease to increase. As we wish to support as many input devices as possible, we want to work towards better support.
details:
- type: note
content: |
We need to investigate how we can do this. One way would be to incorporate more code from SDL, or to integrate SDL_input directly in the engine.
- type: prs
content: |
- [Use SDL for joypad input on Linux #87925](https://github.com/godotengine/godot/pull/87925)
---

View File

@@ -0,0 +1,13 @@
---
category: platforms
rank: 4
state: "active"
anchor: "improve-behavior-of-multiple-monitors-with-different-resolutions-and-dpi-scaling-factors"
title: "Improve behavior of multiple monitors with different resolutions and DPI scaling factors"
description: |
Godot games should be able to seamlessly work when dragged across multiple monitors even when the monitors have different resolutions and DPI scaling factors.
details:
- type: prs
content: |
- [[WIP] Implement native DPI scaling. #86022](https://github.com/godotengine/godot/pull/86022)
---

View File

@@ -0,0 +1,13 @@
---
category: rendering
rank: 0
state: "active"
anchor: "overhaul-sdfgi"
title: "Overhaul SDFGI to improve performance and quality"
description: |
Were really proud of our in-house technology for global illumination, but we think that we can push performance and quality even further. This is a long-term effort, but is something we are very excited about and would like to see finished.
details:
- type: prs
content: |
- [Upgrade SDFGI to HDDAGI #86267](https://github.com/godotengine/godot/pull/86267)
---

View File

@@ -0,0 +1,10 @@
---
category: rendering
rank: 1
state: "active"
anchor: "significantly-improve-post-processing-effects"
title: "Significantly improve post processing effects and add common effects"
description: |
Post processing effects are a weak spot in Godots renderer. The performance and quality are both worse than we would like. We want to overhaul or replace most of our post processing effects in order to achieve both better performance and higher quality.
details:
---

View File

@@ -0,0 +1,13 @@
---
category: rendering
rank: 2
state: "active"
anchor: "add-a-rendering-compositor"
title: "Add a rendering compositor to allow controlling render pass order"
description: |
The goal of the rendering compositor is to give users fine control over the order of rendering operations and allow them to implement more custom behavior within the renderer.
details:
- type: proposals
content: |
- [Implement a Rendering Compositor #7916](https://github.com/godotengine/godot-proposals/issues/7916)
---

View File

@@ -0,0 +1,10 @@
---
category: rendering
rank: 3
state: "active"
anchor: "enhance-graphics-debugging"
title: "Enhance graphics debugging including VRAM debugging and better information from the current profiler"
description: |
Debugging and profiling are necessary tools to release high-fidelity games. Right now Godots debugging and profiling tools are relatively basic and unpolished. We want to make it easier to diagnose rendering issues and pinpoint performance problems instead of users having to rely on guessing and checking.
details:
---

View File

@@ -0,0 +1,13 @@
---
category: rendering
rank: 4
state: "active"
anchor: "add-shader-templates"
title: "Add shader templates to allow overriding the built-in shaders"
description: |
Shader templates can be used to have full control over the shaders used to render your assets. This allows you to both optimize your shader by removing unnecessary parts and to dramatically change your shader by adding custom behavior.
details:
- type: prs
content: |
- [Custom shader templates #94427](https://github.com/godotengine/godot/pull/94427)
---

View File

@@ -0,0 +1,13 @@
---
category: rendering
rank: 5
state: "active"
anchor: "implement-texture-and-mesh-streaming"
title: "Implement texture and mesh streaming"
description: |
This feature would enable the streaming of assets to progressively load scenes, textures, and models in order to boost performance and loading times.
details:
- type: proposals
content: |
- [Implement Mesh streaming #6109](https://github.com/godotengine/godot-proposals/issues/6109)
---

View File

@@ -0,0 +1,10 @@
---
category: rendering
rank: 6
state: "active"
anchor: "expose-a-ray-tracing-api"
title: "Expose a ray tracing API and eventually use it for built in effects"
description: |
Hardware ray tracing is slowly becoming more widespread. Soon it will be common for all desktop computers to support hardware ray tracing and soon after mobile devices will as well. We want to expose an API for hardware ray tracing through our `RenderingDevice` so that users can begin to make use of it. Then, eventually, we want to use that API to leverage hardware ray tracing in the _Forward+_ renderer.
details:
---

View File

@@ -0,0 +1,13 @@
---
category: rendering
rank: 7
state: "active"
anchor: "add-a-deferred-renderer"
title: "Add a deferred renderer"
description: |
Deferred rendering is a technique that can be used to increase performance in certain situations at the cost of flexibility. As Godot users create more complex games, we are seeing more games that would benefit from trading the flexibility that comes with our current renderer for more performance.
details:
- type: proposals
content: |
- [Add a project setting to enable deferred rendering #8295](https://github.com/godotengine/godot-proposals/issues/8295)
---

View File

@@ -0,0 +1,13 @@
---
category: rendering
rank: 8
state: "active"
anchor: "overhaul-lightmapgi"
title: "Overhaul `LightmapGI` to improve baking workflow, performance, and features"
description: |
`LightmapGI` needs a lot of polish and improvements for us to meet the goals we have set for it. Baking times are slower than we want and it often takes too much manual effort to get bakes to achieve the quality that users need.
details:
- type: trackers
content: |
- [[TRACKER] LightmapGI (GPU lightmapper) issues #56033](https://github.com/godotengine/godot/issues/56033)
---

View File

@@ -0,0 +1,13 @@
---
category: rendering
rank: 9
state: "active"
anchor: "implement-webgpu-backend-for-web-exports"
title: "Implement WebGPU backend for web exports"
description: |
WebGPU is a new and modern API that offers direct access to GPUs, exposing features that are not otherwise available on the web. Once WebGPU is supported, it will be possible to export high-fidelity _Forward+_ and _Mobile_ projects to the Web.
details:
- type: proposals
content: |
- [Add WebGPU support #6646](https://github.com/godotengine/godot-proposals/issues/6646)
---

View File

@@ -0,0 +1,14 @@
---
category: scripting
rank: 0
state: "active"
anchor: "implement-namespaces-for-scripting-languages"
title: "Implement namespaces for scripting languages"
description: |
One of the main complaints of the GDScript language is the lack of namespaces. A namespace is a way to group code by a common name. This permits the reuse of classes using the same name, as long as they can be differentiated by their namespace.
But the problem can be found with .NET and GDExtension too. The problem occurs at the registration phase of classes in our internal database.
With namespaces, plugin developers could use their own class names without worrying about clashing with users' internal ones.
details:
---

View File

@@ -0,0 +1,10 @@
---
category: web
rank: 0
state: "active"
anchor: "improve-web-export-size"
title: "Improve Web export size"
description: |
As Godot grows in features, it also grows in size. Web games need to be as small as possible and the size of the engine is becoming a pain point for web games. We need to find ways to reduce the binary size as much as possible and provide tools to developers to easily cut features and reduce the size further.
details:
---

View File

@@ -0,0 +1,13 @@
---
category: web
rank: 1
state: "active"
anchor: "improve-loading-time-for-web-builds"
title: "Improve loading time for web builds"
description: |
Currently, if no specific steps are taken by the game developer, resources for a game on the Web are bundled into one single `.pck` file. As users need to download the entire games assets at front, we need to find a better way to split the loading throughout the game, only when needed. This would greatly improve the starting time of the game.
details:
- type: note
content: |
We need to investigate ways to solve the issue. We think a custom asynchronous filesystem could fix the issue, downloading files individually when needed.
---

View File

@@ -0,0 +1,18 @@
---
category: web
rank: 2
state: "active"
anchor: "customizing-engine-builds-by-detecting-used-features"
title: "Customizing engine builds by detecting used features from a project"
description: |
For most platforms, the current official Godot builds suffice. Games may not use every feature the build has under the hood, but storage is usually not an issue. But Web platform games require the developer to optimize the load size (as bandwidth can be limited) and the load speed (Internet speed can vary).
We are investigating how we can reduce the build size, starting by offering an easy way to the users to customize their builds.
details:
- type: note
content: |
We're thinking (out loud) about:
- investigating the gains possible by customizing the engine builds
- documenting the “Edit Compilation Configuration Profile” tool offered in the Editor
- finding a way to offer more official Web exports
---

View File

@@ -0,0 +1,10 @@
---
category: web
rank: 3
state: "active"
anchor: "continue-to-improve-compatibility-across-devices-and-browsers"
title: "Continue to improve compatibility across devices and browsers"
description: |
[Before 4.3s introduction of single-threaded builds](https://godotengine.org/article/progress-report-web-export-in-4-3/), we had some compatibility issues, especially on macOS and iOS devices. The problem is maybe less important than it once was, but we continue to be alert about compatibility issues that can exist now or at any point in the future.
details:
---

View File

@@ -0,0 +1,13 @@
---
category: xr
rank: 0
state: "active"
anchor: "enhance-openxr-action-map-to-support-binding-modifier"
title: "Enhance OpenXR action map to support binding modifier"
description: |
OpenXR's action map is similar to Godot's input map, in that it allows mapping inputs to in-game actions. We'd like to enhance Godot's support of OpenXR action maps by allowing the developer to apply modifiers to the actions, such as setting thresholds, enabling haptics, or converting analog inputs (like thumbsticks and trackpads) to D-Pad-like actions.
details:
- type: prs
content: |
- [OpenXR: Add support for binding modifiers #97140](https://github.com/godotengine/godot/pull/97140)
---

View File

@@ -0,0 +1,16 @@
---
category: xr
rank: 1
state: "active"
anchor: "make-action-map-system-available-to-webxr"
title: "Make action map system available to WebXR"
description: |
OpenXR uses the "OpenXR action map system" for handling input, whereas WebXR (and any other XR SDKs added via GDExtension) will use their own way of handling input. This complicates making a game that will work on both OpenXR and WebXR. We'd like to add a generalized XR action map system, which will use the OpenXR action map system on OpenXR, but provide a fallback implementation that can be used with any XR SDK.
details:
- type: note
content: |
And eventually other platforms.
- type: proposals
content: |
- [Implement generalized XR action map system for use outside OpenXR #6548](https://github.com/godotengine/godot-proposals/issues/6548)
---

View File

@@ -0,0 +1,13 @@
---
category: xr
rank: 2
state: "active"
anchor: "add-openxr-support-for-d3d12-and-metal"
title: "Add OpenXR support for DirectX12 and Metal"
description: |
Currently, when using OpenXR, you can use the Compatibility renderer or the _Forward+_ and _Mobile_ renderers, but only when using Vulkan. We want to add support for DirectX12 and Metal so that users on all platforms can benefit from OpenXR.
details:
- type: prs
content: |
- [Openxr KHR metal enable #98872](https://github.com/godotengine/godot/pull/98872)
---

View File

@@ -0,0 +1,16 @@
---
category: xr
rank: 3
state: "active"
anchor: "move-khronos-loader-from-vendor-to-core"
title: "Move Khronos loader support from our vendor plugin to the core of the Godot"
description: |
The end goal is the ability to deploy Godot XR applications made with the executable downloaded from the website on any Android OpenXR conformant device.
details:
- type: note
content: |
The Vendor plugin should only be required to use vendor specific features.
- type: note
content: |
As part of this we will add support for Android to use the Khronos loader.
---

View File

@@ -0,0 +1,10 @@
---
category: xr
rank: 4
state: "active"
anchor: "add-support-for-render-models"
title: "Add support for render models (i.e. displaying the correct controllers and other peripherals)"
description: |
This feature is already supported for the Meta vendor solution. Once a core API is becoming available in OpenXR, we intend to adopt this feature quickly.
details:
---

View File

@@ -0,0 +1,10 @@
---
category: xr
rank: 5
state: "active"
anchor: "continue-development-of-the-godot-xr-tools-library"
title: "Continue development of the Godot XR Tools library"
description: |
The Godot XR Tools library offers out of the box locomotion and interaction solutions built on top of Godot's core functionality. We intend to continue developing these tools.
details:
---

View File

@@ -0,0 +1,2 @@
---
---

View File

@@ -0,0 +1,38 @@
{% assign nb_of_priorities = include.elements | size %}
{% if nb_of_priorities > 0 %}
<div id="{{ include.id }}" class="category level-{{ include.level }}">
<div class="container">
<details class="category-details" open>
<summary class="category-summary">
<div class="category-anchor-container">
<a class="category-anchor" href="#{{ include.id }}">
<span class="anchor-icon"></span>
</a>
</div>
{% assign header_number = include.level | to_i | plus: 1 %}
{% assign header_tag = "h" | append: header_number %}
<{{ header_tag }} class="category-title">
<div class="category-title-text">{{ include.name }}</div>
</{{ header_tag }}>
<div class="category-accordion-toggle">
<span class="material-symbols-outlined more">unfold_more</span>
<span class="material-symbols-outlined less">unfold_less</span>
</div>
</summary>
<div class="category-content">
<ul class="element-list">
{% for element in include.elements %}
<li class="element-list-item">
{%
include_relative _includes/element.html
element=element
%}
</li>
{% endfor %}
</ul>
</div>
</details>
</div>
</div>
{% endif %}

View File

@@ -0,0 +1,98 @@
{% assign element = include.element %}
<div id="{{ element.anchor }}" class="element">
<details class="element-main">
<summary class="element-title">
<div class="text">
<div class="element-title-container element-title-container-title-text">
<div class="element-title-text">{{ element.title | markdownify }}</div>
</div>
<div class="element-title-container element-title-container-anchor">
<a class="element-title-anchor" href="#{{ element.anchor }}">
<span class="anchor-icon"></span>
</a>
</div>
</div>
<div class="element-accordion-toggle">
<span class="material-symbols-outlined more">unfold_more</span>
<span class="material-symbols-outlined less">unfold_less</span>
</div>
</summary>
<div class="element-content">
<div class="element-description">
{% if element.description == "" %}
<em>...</em>
{% else %}
{{ element.description | markdownify }}
{% endif %}
</div>
<div class="element-details"><!-- Remove unnecessary whitespace that prevents CSS :empty.
-->{% for detail in element.details %}
<div class="detail-block {{ detail.type }}">
<div class="detail-block-header">
<div class="icon">
{% if detail.type == "note" %}
<span class="material-symbols-outlined info">info</span>
{% elsif detail.type == "warning" %}
<span class="material-symbols-outlined warning">warning</span>
{% elsif detail.type == "links" %}
<span class="material-symbols-outlined links">file_export</span>
{% elsif detail.type == "trackers" %}
<span class="material-symbols-outlined list_alt_check">list_alt_check</span>
{% elsif detail.type == "prs" %}
<span class="godot-icon-git-pull-request"></span>
{% elsif detail.type == "issues" %}
<span class="godot-icon-bug"></span>
{% elsif detail.type == "proposals" %}
<span class="godot-icon-zap"></span>
{% endif %}
</div>
<div class="label">
{% if detail.type == "note" %}
<span>Note</span>
{% elsif detail.type == "warning" %}
<span>Warning</span>
{% elsif detail.type == "links" %}
<span>Links</span>
{% elsif detail.type == "trackers" %}
<span>Trackers</span>
{% elsif detail.type == "prs" %}
<span>Pull requests</span>
{% elsif detail.type == "issues" %}
<span>Issues</span>
{% elsif detail.type == "proposals" %}
<span>Proposals</span>
{% endif %}
</div>
</div>
<div class="detail-block-content">
{{ detail.content | markdownify }}
</div>
</div>
{% endfor %}<!--
--></div>
<div class="element-edit"><!-- Remove unnecessary whitespace that prevents CSS :empty.
-->{% unless element.edits == null %}
<div class="element-edit-title">Edit history</div>
<table class="element-edit-entries">
<tbody>
{% assign edit_elements = element.edits | sort: "date" | reverse %}
{% for edit_element in edit_elements %}
<tr class="element-edit-entry">
{% assign date = edit_element["date"] %}
{% assign content = edit_element["content"] %}
<td>
<time datetime="{{date}}" class="element-edit-entry-time">{{date}}</time>
</td>
<td class="element-edit-entry-content">
{{ content | markdownify }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endunless %}<!--
--></div>
</div>
</details>
</div>

View File

@@ -0,0 +1,32 @@
{% assign now = "now" | date: "%s" | plus: 0 %}
{% assign last_updated_duration = include.last_updated_duration | default: 0 %}
{% assign enable_recent_update = include.enable_recent_update %}
{% assign nb_of_priorities = include.priorities | size %}
{% assign is_list_item = include.is_list_item %}
{% if nb_of_priorities > 0 %}
{% if is_list_item %}
<li>
{% endif %}
<a href="#{{ include.anchor }}">
<span>{{ include.title }}</span>
{% assign is_recent = false %}
{% for element in include.priorities %}
{% if element.last_updated != "" %}
{% assign last_updated = element.last_updated | date: "%s" | plus: 0 %}
{% assign last_updated_time = now | minus: last_updated_duration %}
{% if last_updated > last_updated_time %}
{% assign is_recent = true %}
{% break %}
{% endif %}
{% endif %}
{% endfor %}
{% if is_recent and enable_recent_update %}
<div class="recent-icon"></div>
{% endif %}
</a>
{% if is_list_item %}
</li>
{% endif %}
{% endif %}

650
pages/priorities/index.html Normal file
View File

@@ -0,0 +1,650 @@
---
permalink: /priorities
title: "Priorities"
description: "Godot Priorities"
layout: default
---
{% assign core_priorities = site.priorities | where: "category", "core" | sort: "rank" %}
{% assign physics_priorities = site.priorities | where: "category", "physics" | sort: "rank" %}
{% assign rendering_priorities = site.priorities | where: "category", "rendering" | sort: "rank" %}
{% assign animation_priorities = site.priorities | where: "category", "animation" | sort: "rank" %}
{% assign navigation_priorities = site.priorities | where: "category", "navigation" | sort: "rank" %}
{% assign editor_priorities = site.priorities | where: "category", "editor" | sort: "rank" %}
{% assign assetio_priorities = site.priorities | where: "category", "assetio" | sort: "rank" %}
{% assign platforms_priorities = site.priorities | where: "category", "platforms" | sort: "rank" %}
{% assign android_priorities = site.priorities | where: "category", "android" | sort: "rank" %}
{% assign ios_priorities = site.priorities | where: "category", "ios" | sort: "rank" %}
{% assign linuxbsd_priorities = site.priorities | where: "category", "linuxbsd" | sort: "rank" %}
{% assign macos_priorities = site.priorities | where: "category", "macos" | sort: "rank" %}
{% assign windows_priorities = site.priorities | where: "category", "windows" | sort: "rank" %}
{% assign web_priorities = site.priorities | where: "category", "web" | sort: "rank" %}
{% assign xr_priorities = site.priorities | where: "category", "xr" | sort: "rank" %}
{% assign scripting_priorities = site.priorities | where: "category", "scripting" | sort: "rank" %}
{% assign gdscript_priorities = site.priorities | where: "category", "gdscript" | sort: "rank" %}
{% assign dotnet_priorities = site.priorities | where: "category", "dotnet" | sort: "rank" %}
{% assign gdextension_priorities = site.priorities | where: "category", "gdextension" | sort: "rank" %}
{% assign documentation_priorities = site.priorities | where: "category", "documentation" | sort: "rank" %}
{% include header.html %}
<!-- Priorities stylesheet. -->
<link rel="stylesheet" href="/assets/css/priorities/base.css" />
<noscript>
<link rel="stylesheet" href="/assets/css/priorities/noscript.css" />
</noscript>
<!-- Priorities script. -->
<script type="module" src="/assets/js/priorities.mjs"></script>
<!-- Google icons. -->
<style>
@font-face {
font-family: 'Material Symbols Outlined';
font-style: normal;
font-weight: 400;
src: url(/storage/priorities/fonts/google-icons.woff2) format('woff');
}
.material-symbols-outlined {
font-family: 'Material Symbols Outlined';
font-weight: normal;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-moz-font-feature-settings: 'liga';
-moz-osx-font-smoothing: grayscale;
}
</style>
<style>
.material-symbols-outlined {
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 24;
}
</style>
<!-- Octicons icons. -->
<style>
/* Icon made with https://fontello.com/ based on icons found in /assets/icons/octicons. */
@font-face {
font-family: "octicons";
src: url(/storage/priorities/fonts/octicons.woff2);
font-weight: normal;
font-style: normal;
}
[class^="godot-icon-"]:before, [class*=" godot-icon-"]:before {
font-family: "octicons";
font-style: normal;
font-weight: normal;
speak: never;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.godot-icon-bug:before { content: '\e004'; } /* '' */
.godot-icon-git-pull-request:before { content: '\e005'; } /* '' */
.godot-icon-zap:before { content: '\e006'; } /* '' */
</style>
<div class="priorities-container">
<div class="priorities-intro">
<!-- BANNER -->
<div class="banner">
<div class="container">
<h1>Priorities</h1>
</div>
</div>
<!-- INTRO -->
<div class="intro">
<div class="container">
<div class="intro-text">
<div>
<p class="wishlist-par">
This page is our <strong>wishlist</strong>:
it details the improvements that we consider most important to make the Godot Engine a better tool for its users.
The items were created by talking to the volunteer maintainers for each area about the current state of things,
their personal goals, and what kind of contributions they are looking for.
</p>
<p class="wishlist-par">
As with any wishlist, these points are an idealized version of what is to come in the projects future.
To realize them, we will need the support from you, whether you are a representative for a company looking to sponsor Godot
or a game developer capable to contribute to the codebase directly. The Godot Engine has always been a <strong>community effort</strong> — there is only so much ground we can cover with Godot Foundation contractors at the moment.
</p>
</div>
<div>
<p class="wishlist-par">
We hope that by publishing this list, we can align our communal efforts: by showcasing which areas need to see
improvements the most and what the next steps would be for anyone taking action. Let this list be an indicator of…
</p>
<ol class="wishlist-list">
<li>what kind of contractors we would like to hire if donations increase,</li>
<li>what areas are ripe with good first issues for new contributors, and</li>
<li>where corporate sponsors could lend a helping hand</li>
</ol>
<div>
<div class="wishlist-btns">
<a class="wishlist-btn-anchor donate" href="https://fund.godotengine.org/" target="_blank">
<div class="wishlist-btn-text">
<span>Donate to the Fund</span>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 3L11 8L6 13" stroke="CurrentColor" stroke-width="1.5"></path>
</svg>
</div>
</a>
<a class="wishlist-btn-anchor howto" href="https://docs.godotengine.org/en/stable/contributing/how_to_contribute.html" target="_blank">
<div class="wishlist-btn-text">
<span>How to contribute</span>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 3L11 8L6 13" stroke="CurrentColor" stroke-width="1.5"></path>
</svg>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- NAVIGATION -->
<nav id="priorities-navigation" class="navigation">
<div class="container">
<div class="navigation-list-container">
<ul class="navigation-list">
<!-- Core -->
<li>
<details class="navigation-list-details" open>
<!-- `tabindex="-1"` to disable details keyboard selection (as we disabled the functionality). -->
<summary class="navigation-list-summary" tabindex="-1">
<div class="label">
{%
include_relative _includes/nav_link.html
anchor="core"
title="Core"
priorities=core_priorities
is_list_item=false
%}
</div>
<div class="toggle">
<span class="material-symbols-outlined more">unfold_more</span>
<span class="material-symbols-outlined less">unfold_less</span>
</div>
</summary>
<ul class="navigation-sublist">
{%
include_relative _includes/nav_link.html
anchor="physics"
title="Physics"
priorities=physics_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
{%
include_relative _includes/nav_link.html
anchor="rendering"
title="Rendering"
priorities=rendering_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
{%
include_relative _includes/nav_link.html
anchor="animation"
title="Animation"
priorities=animation_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
{%
include_relative _includes/nav_link.html
anchor="navigation"
title="Navigation"
priorities=navigation_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
</ul>
</details>
</li>
<!-- Editor -->
<li>
<details class="navigation-list-details" open>
<summary class="navigation-list-summary" tabindex="-1">
<div class="label">
{%
include_relative _includes/nav_link.html
anchor="editor"
title="Editor"
priorities=editor_priorities
is_list_item=false
%}
</div>
<div class="toggle">
<span class="material-symbols-outlined more">unfold_more</span>
<span class="material-symbols-outlined less">unfold_less</span>
</div>
</summary>
<ul class="navigation-sublist">
{%
include_relative _includes/nav_link.html
anchor="assetio"
title="Asset import & export"
priorities=assetio_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
</ul>
</details>
</li>
<!-- Platforms -->
<li>
<details class="navigation-list-details" open>
<summary class="navigation-list-summary" tabindex="-1">
<div class="label">
{%
include_relative _includes/nav_link.html
anchor="platforms"
title="Platforms"
priorities=platforms_priorities
is_list_item=false
%}
</div>
<div class="toggle">
<span class="material-symbols-outlined more">unfold_more</span>
<span class="material-symbols-outlined less">unfold_less</span>
</div>
</summary>
<ul class="navigation-sublist">
{%
include_relative _includes/nav_link.html
anchor="android"
title="Android"
priorities=android_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
{%
include_relative _includes/nav_link.html
anchor="ios"
title="iOS"
priorities=ios_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
{%
include_relative _includes/nav_link.html
anchor="linuxbsd"
title="Linux/BSDs"
priorities=linuxbsd_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
{%
include_relative _includes/nav_link.html
anchor="macos"
title="macOS"
priorities=macos_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
{%
include_relative _includes/nav_link.html
anchor="windows"
title="Windows"
priorities=windows_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
{%
include_relative _includes/nav_link.html
anchor="web"
title="Web"
priorities=web_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
{%
include_relative _includes/nav_link.html
anchor="xr"
title="XR"
priorities=xr_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
</ul>
</details>
</li>
<!-- Scripting -->
<li>
<details class="navigation-list-details" open>
<summary class="navigation-list-summary" tabindex="-1">
<div class="label">
{%
include_relative _includes/nav_link.html
anchor="scripting"
title="Scripting"
priorities=scripting_priorities
is_list_item=false
%}
</div>
<div class="toggle">
<span class="material-symbols-outlined more">unfold_more</span>
<span class="material-symbols-outlined less">unfold_less</span>
</div>
</summary>
<ul class="navigation-sublist">
{%
include_relative _includes/nav_link.html
anchor="gdscript"
title="GDScript"
priorities=gdscript_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
{%
include_relative _includes/nav_link.html
anchor="dotnet"
title=".NET"
priorities=dotnet_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
{%
include_relative _includes/nav_link.html
anchor="gdextension"
title="GDExtension"
priorities=gdextension_priorities
is_list_item=true
last_updated_duration=last_updated_duration
ignore_recent_update=ignore_recent_update
%}
</ul>
</details>
</li>
<!-- Documentation -->
{% assign nb_of_documentation_priorities = documentation_priorities | size %}
{% if nb_of_documentation_priorities > 0 %}
<li>
<details class="navigation-list-details" open>
<summary class="navigation-list-summary" tabindex="-1">
<div class="label">
{%
include_relative _includes/nav_link.html
anchor="documentation"
title="Documentation"
priorities=documentation_priorities
is_list_item=false
%}
</div>
<div class="toggle">
<span class="material-symbols-outlined more">unfold_more</span>
<span class="material-symbols-outlined less">unfold_less</span>
</div>
</summary>
<ul class="navigation-sublist">
</ul>
</details>
</li>
{% endif %}
</ul>
</div>
</div>
</nav>
<div class="priorities">
<!-- Core -->
{%
include_relative _includes/category.html
level="1"
id="core"
name="Core"
elements=core_priorities
%}
<!-- :: Physics -->
{%
include_relative _includes/category.html
level="2"
id="physics"
name="Physics"
elements=physics_priorities
%}
<!-- :: Rendering -->
{%
include_relative _includes/category.html
level="2"
id="rendering"
name="Rendering"
elements=rendering_priorities
%}
<!-- :: Animation -->
{%
include_relative _includes/category.html
level="2"
id="animation"
name="Animation"
elements=animation_priorities
%}
<!-- :: Navigation -->
{%
include_relative _includes/category.html
level="2"
id="navigation"
name="Navigation"
elements=navigation_priorities
%}
<!-- Editor -->
{%
include_relative _includes/category.html
level="1"
id="editor"
name="Editor"
elements=editor_priorities
%}
<!-- :: Asset import & export -->
{%
include_relative _includes/category.html
level="2"
id="assetio"
name="Asset import &amp; export"
elements=assetio_priorities
%}
<!-- Platforms -->
{%
include_relative _includes/category.html
level="1"
id="platforms"
name="Platforms"
elements=platforms_priorities
%}
<!-- :: Android -->
{%
include_relative _includes/category.html
level="2"
id="android"
name="Android"
elements=android_priorities
%}
<!-- :: iOS -->
{%
include_relative _includes/category.html
level="2"
id="ios"
name="iOS"
elements=ios_priorities
%}
<!-- :: Linux/BSDs -->
{%
include_relative _includes/category.html
level="2"
id="linuxbsd"
name="Linux/BSDs"
elements=linuxbsd_priorities
%}
<!-- :: macOS -->
{%
include_relative _includes/category.html
level="2"
id="macos"
name="macOS"
elements=macos_priorities
%}
<!-- :: Windows -->
{%
include_relative _includes/category.html
level="2"
id="windows"
name="Windows"
elements=windows_priorities
%}
<!-- :: Web -->
{%
include_relative _includes/category.html
level="2"
id="web"
name="Web"
elements=web_priorities
%}
<!-- :: XR -->
{%
include_relative _includes/category.html
level="2"
id="xr"
name="XR"
elements=xr_priorities
%}
<!-- Scripting -->
{%
include_relative _includes/category.html
level="1"
id="scripting"
name="Scripting"
elements=scripting_priorities
%}
<!-- :: GDScript -->
{%
include_relative _includes/category.html
level="2"
id="gdscript"
name="GDScript"
elements=gdscript_priorities
%}
<!-- :: .NET -->
{%
include_relative _includes/category.html
level="2"
id="dotnet"
name=".NET"
elements=dotnet_priorities
%}
<!-- :: GDExtension -->
{%
include_relative _includes/category.html
level="2"
id="gdextension"
name="GDExtension"
elements=gdextension_priorities
%}
<!-- Documentation -->
{%
include_relative _includes/category.html
level="1"
id="documentation"
name="Documentation"
elements=documentation_priorities
%}
</div>
<!-- SCROLL TO TOP -->
<div id="scroll-to-top">
<a class="link" href="#priorities-navigation"><span></span></a>
</div>
<!-- FOUNDATION -->
<div class="foundation">
<div class="container">
</div>
</div>
<!-- CREDITS -->
<div class="credits">
<div class="container">
</div>
</div>
</div>
{% include footer.html %}

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 278 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB