소스 검색

Merge pull request #1348 from ChrootDoot/master

Fixed link in 'From Unity3D to Godot'
Max Hilbrunner 7 년 전
부모
커밋
db18f510f0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      getting_started/editor/unity_to_godot.rst

+ 1 - 1
getting_started/editor/unity_to_godot.rst

@@ -173,7 +173,7 @@ Connections : groups and signals
 
 You can control nodes by accessing them using a script, and call functions (built-in or user-defined) on them. But there's more: you can also place them in a group and call a function on all nodes contained in this group! This is explained in :ref:`this page <doc_scripting_continued>`.
 
-But there's more! Certain nodes throw signals when certain actions happen. You can connect these signals to call a specific function when they happen. Note that you can define your own signals and send them whenever you want. This feature is documented `here <gdscript.html#signals>`_.
+But there's more! Certain nodes throw signals when certain actions happen. You can connect these signals to call a specific function when they happen. Note that you can define your own signals and send them whenever you want. This feature is documented `here <../scripting/gdscript/gdscript_basics.html#signals>`_.
 
 
 Using Godot in C++