We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
import Foundation import Macaw class MorhView: MacawView { required convenience init?(coder aDecoder: NSCoder) { let circle = Shape( form: Circle(r: 15.0), fill: Color.silver ) let node = Group(contents: [circle]) node.place = node.place.move(dx: 200, dy: 200) node.onTouchPressed { f in circle.fillVar.animate(to: Color.white, during: 2.0) } self.init(node: node, coder: aDecoder) } }
The text was updated successfully, but these errors were encountered:
a40aa49
vhailor13
No branches or pull requests
The text was updated successfully, but these errors were encountered: