mirror of
https://github.com/lxsang/Diya-API.git
synced 2024-12-27 03:48:21 +01:00
12 lines
297 B
Smalltalk
12 lines
297 B
Smalltalk
Extension { #name : #'SDL_MouseButtonEvent' }
|
|
|
|
{ #category : #'*Diya' }
|
|
SDL_MouseButtonEvent >> triggableOn: aNode [
|
|
^ aNode inner: self worldPosition
|
|
]
|
|
|
|
{ #category : #'*Diya' }
|
|
SDL_MouseButtonEvent >> worldPosition [
|
|
^ (self x) @ (DiyaRendererContext uniqueInstance resolution y - self y )
|
|
]
|