Results 1 to 2 of 2
- 12-25-2012, 03:53 PM
Thread Author #1
Disable HandleSingleTouchButtonCB and enable HandleSingleTouchMotionCB
I'm trying to make a simple game only with motion gestures with marmalade c++. I would like to disable single touch events and enable only motion events.
The point of the game is to drag images over the surface around some barriers, but if single touch is enabled then the images jump to the spot where I touch the screen. I would like to make the images to move only on motion events.
Is it even posible?
Sorry for my bad english....
My code for touch detection is
void HandleSingleTouchButtonCB(s3ePointerEvent* event)
{
CTouch* touch = g_Input.getTouch(0);
touch->active = event->m_Pressed != 0;
touch->x = event->m_x;
touch->y = event->m_y;
}
//
// HandleSingleTouchMotionCB - The system will call this callback when the user moves their finger on the screen
//
void HandleSingleTouchMotionCB(s3ePointerMotionEvent* event)
{
CTouch* touch = g_Input.getTouch(0);
touch->x = event->m_x;
touch->y = event->m_y;
} - 12-26-2012, 05:10 PM #2
Please ask a moderator to move your topic to the 'BB10 Development' subforum, or re-post your topic there. BB10 devs will help you out further.
Developer of; Crackberry Forums Reader app -> Crackberry Forum App (NON-ANDROID)
Playbook + BB10 DEV , APPS ON REQUEST PLEASE PM ME or EMAIL me @ Jeroen_13@crackberry.com
bbUI.js expert -- Need HELP ? Just PM me ! Blackberry Playbook 64GB WEBWORKS APP DEVELOPER & APP CONVERTER + SIGNING
Similar Threads
-
Holster that does not drain battery and enables sleep
By bleistift in forum BBOS Phone AccessoriesReplies: 24Last Post: 05-13-2009, 12:48 PM -
What effect does disabling WiFi and 3G have on battery life?
By NathanE in forum General BlackBerry DiscussionReplies: 10Last Post: 05-12-2009, 11:35 AM -
Disabling backup and delete on DM 4.6?
By Guy36 in forum General BlackBerry DiscussionReplies: 1Last Post: 03-24-2009, 01:21 PM -
How to disable email and BB messenger alert?
By naaz90 in forum BlackBerry StormReplies: 2Last Post: 12-19-2008, 07:45 AM -
Dodging IT policy and enabling Bluetooth?
By horatio1996 in forum BlackBerry 8830 WEReplies: 5Last Post: 06-26-2008, 02:57 PM

Reply















