This file contains hidden or 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
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle', | |
| a: Ember.Object.create({ b: 3 }), | |
| c: Ember.computed('a', function() { | |
| return this.get('a.b'); | |
| }), | |
This file contains hidden or 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
| { | |
| "username": "jimgreer", | |
| "first_name": "Bingo", | |
| "last_name": "Kitty", | |
| "age": 5, | |
| "email": "bingo@kongregate.com", | |
| "isMember": true, | |
| "lastLogin": 1, | |
| "suspendedTill": null, | |
| "image": "https://scontent-sea1-1.cdninstagram.com/vp/27f668f3e24d287034c54635f0533fb2/5C0104FA/t51.2885-15/e35/11350782_1625867587673307_876980115_n.jpg", |
This file contains hidden or 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
| class_name SecondOrderSystem | |
| extends Node3D | |
| @export var frequency := 1.0 : | |
| set(value): | |
| frequency = value | |
| _update_k_values() | |
| @export var damping := 0.5 : | |
| set(value): |
This file contains hidden or 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
| class_name SecondOrderSystem | |
| extends Node2D | |
| @export var frequency := 1.0 : | |
| set(value): | |
| frequency = value | |
| _update_k_values() | |
| @export var damping := 0.5 : |
OlderNewer