Skip to content

Commit

Permalink
Fix documentation links in the editor
Browse files Browse the repository at this point in the history
  • Loading branch information
limbonaut committed Dec 29, 2024
1 parent a952009 commit 9abd328
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion limboai_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
minor = 3
patch = 0
status = "dev"
doc_branch = "master"
doc_branch = "latest"
godot_cpp_ref = "godot-4.3-stable"

# Code that generates version header
Expand Down
6 changes: 3 additions & 3 deletions util/limbo_utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -575,19 +575,19 @@ inline void _open_online_doc_page(const String &p_page) {
}

void LimboUtility::open_doc_introduction() {
_open_online_doc_page("getting-started/introduction.html");
_open_online_doc_page("behavior-trees/introduction.html");
}

void LimboUtility::open_doc_online() {
_open_online_doc_page("index.html");
}

void LimboUtility::open_doc_gdextension_limitations() {
_open_online_doc_page("getting-started/gdextension.html#limitations-of-the-gdextension-version");
_open_online_doc_page("getting-started/getting-limboai.html#get-gdextension-version");
}

void LimboUtility::open_doc_custom_tasks() {
_open_online_doc_page("getting-started/custom-tasks.html");
_open_online_doc_page("behavior-trees/custom-tasks.html");
}

void LimboUtility::open_doc_class(const String &p_class_name) {
Expand Down

0 comments on commit 9abd328

Please sign in to comment.