-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add KHR_interactivity draft #2293
Draft
lexaknyazev
wants to merge
42
commits into
main
Choose a base branch
from
interactivity
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
2070215
Add KHR_interactivity intro
lexaknyazev 09bd2cf
Add socket descriptions and math nodes
lexaknyazev 151f3ad
Add vector and more arithmetic nodes; editorial changes
lexaknyazev 47c12fa
Add comparison nodes; address feedback
lexaknyazev 736e686
Add special float constants
lexaknyazev 667fdb1
Add matrix and integer nodes; update formatting
lexaknyazev 4b7b4fe
Add a note about math/tan return values
lexaknyazev 866ea7f
Add flow nodes
lexaknyazev f69bfb1
Address feedback
lexaknyazev 29e8acc
Add flow/throttle
lexaknyazev 6ebb25f
Add flow/delay
lexaknyazev c63a37f
Address feedback
lexaknyazev 48851d2
Mention flow/delay activations limit
lexaknyazev 86bf693
Add pointer/get and pointer/set
lexaknyazev 71860b8
Add variable/get and variable/set
lexaknyazev ffd99ef
Adjust flow/throttle error condition
lexaknyazev 3260039
Update delay nodes
lexaknyazev 18e12cc
Clarify delay limits
lexaknyazev e73bc71
Clarify invalid values for pointer/set
lexaknyazev 38e690f
Add boolean arithmetic nodes
lexaknyazev 8fbc866
Add type conversion nodes
lexaknyazev b681b0a
Add math/select node
lexaknyazev 9e000b9
Add boolean XOR
lexaknyazev de89f6a
Add vector and matrix combine/extract nodes
lexaknyazev 6867635
Add pointer/interpolate
lexaknyazev 32fd170
Typo fixes
lexaknyazev 19630ba
Adjust min/max/clamp node descriptions
lexaknyazev a369436
Add animation control nodes
lexaknyazev 4685e06
Add lifecycle nodes
lexaknyazev 09f1f1d
Add custom event nodes
lexaknyazev 22fecec
Add more intro sections
lexaknyazev 63f5d3d
Add JSON syntax
lexaknyazev 4177adf
Initialize floating-point variables to NaN
lexaknyazev 21e1b4c
Update custom event nodes
lexaknyazev 83aa69c
Align async output flow socket names
lexaknyazev d873db6
Clarify flow/multiGate randomness
lexaknyazev 86409f3
Fix typo
lexaknyazev 4834fcd
Clarify input value sockets for pointer nodes
lexaknyazev e33a3bc
Clarify configuration value types
lexaknyazev fbcf696
Clarify pointer nodes for not mutable pointers
lexaknyazev 11339a0
Add active camera pointers
lexaknyazev 220ca40
Clarify pointer nodes validity
lexaknyazev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are variables accessed by index instead of by name? It would make more sense to me to set a variable called
"money"
than one called27
.