-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update instancing.zip for Godot 4 #6187
Closed
strawberrybeach
wants to merge
1
commit into
godotengine:master
from
strawberrybeach:step-by-step-instancing
Closed
Update instancing.zip for Godot 4 #6187
strawberrybeach
wants to merge
1
commit into
godotengine:master
from
strawberrybeach:step-by-step-instancing
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
We should really move this demo to the godot-demo-projects repository instead of updating a ZIP file. Otherwise, we'll keep bloating the Git history with a binary file every time the demo has to be updated for any reason. |
41 tasks
rm-code
added a commit
to rm-code/godot-docs
that referenced
this pull request
Mar 1, 2023
Removed the instancing.zip as discussed in godotengine#6793 and replaced it with text and image references to the godot-projects instancing demo: https://github.com/godotengine/godot-demo-projects/tree/4.0/2d/instancing Closes godotengine#6793 Supersedes godotengine#6187 and godotengine#5374
rm-code
added a commit
to rm-code/godot-docs
that referenced
this pull request
Mar 1, 2023
Removed the instancing.zip as discussed in godotengine#6793 and replaced it with text and image references to the godot-projects instancing demo: https://github.com/godotengine/godot-demo-projects/tree/4.0/2d/instancing Closes godotengine#6793 Supersedes godotengine#6187 and godotengine#5374
rm-code
added a commit
to rm-code/godot-docs
that referenced
this pull request
Mar 1, 2023
Removed the instancing.zip as discussed in godotengine#6793 and replaced it with text and image references to the godot-projects instancing demo: https://github.com/godotengine/godot-demo-projects/tree/4.0/2d/instancing Closes godotengine#6793 Supersedes godotengine#6187 and godotengine#5374
rm-code
added a commit
to rm-code/godot-docs
that referenced
this pull request
Mar 1, 2023
Removed the instancing.zip as discussed in godotengine#6793 and replaced it with text and image references to the godot-projects instancing demo: https://github.com/godotengine/godot-demo-projects/tree/4.0/2d/instancing Closes godotengine#6793 Supersedes godotengine#6187 and godotengine#5374
rm-code
added a commit
to rm-code/godot-docs
that referenced
this pull request
Mar 1, 2023
Removed the instancing.zip as discussed in godotengine#6793 and replaced it with text and image references to the godot-projects instancing demo: https://github.com/godotengine/godot-demo-projects/tree/4.0/2d/instancing Closes godotengine#6793 Supersedes godotengine#6187 and godotengine#5374
rm-code
added a commit
to rm-code/godot-docs
that referenced
this pull request
Mar 1, 2023
Removed the instancing.zip as discussed in godotengine#6793 and replaced it with text and image references to the godot-projects instancing demo: https://github.com/godotengine/godot-demo-projects/tree/4.0/2d/instancing Added a small section about instancing via code. Closes godotengine#6793 Supersedes godotengine#6187 and godotengine#5374
rm-code
added a commit
to rm-code/godot-docs
that referenced
this pull request
Mar 4, 2023
Removed the instancing.zip as discussed in godotengine#6793 and replaced it with text and image references to the godot-projects instancing demo: https://github.com/godotengine/godot-demo-projects/tree/4.0/2d/instancing Added a small section about instancing via code. Closes godotengine#6793 Supersedes godotengine#6187 and godotengine#5374
rm-code
added a commit
to rm-code/godot-docs
that referenced
this pull request
Mar 4, 2023
Removed the instancing.zip as discussed in godotengine#6793 and replaced it with text and image references to the godot-projects instancing demo: https://github.com/godotengine/godot-demo-projects/tree/4.0/2d/instancing Added a small section about instancing via code. Closes godotengine#6793 Supersedes godotengine#6187 and godotengine#5374
rm-code
added a commit
to rm-code/godot-docs
that referenced
this pull request
Mar 6, 2023
Removed the instancing.zip as discussed in godotengine#6793 and replaced it with text and image references to the godot-projects instancing demo: https://github.com/godotengine/godot-demo-projects/tree/4.0/2d/instancing Added a small section about instancing via code. Closes godotengine#6793 Supersedes godotengine#6187 and godotengine#5374
Superseded by #7222 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
archived
area:getting started
Issues and PRs related to the Getting Started section of the documentation
bug
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This commit slightly changes
Main.gd
in the instancing sample, so it works with 4.0.Used the migrate project thing, only had to change 1 thing manually:
export (PackedScene) var Ball
changed tovar Ball = load("res://Ball.tscn")
Closes #6564.