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