声明函数碰撞检测函数,两个精灵和重写update
bool isCollision( CCPoint p1,CCPoint p2,int w1,int h1,int w2,int h2 );
CCSprite *sp2;
CCSprite *sp1;
virtual void update(float delta);
//重写触摸事件
virtual void regi...
分类:
其他好文 时间:
2014-06-05 07:12:15
阅读次数:
236
之前移植了6410后,就没有测试过,今天编写程序烧进去后运行才发现触摸屏不起作用。
于是试了下系统里tslib的bin文件夹下的命令:
./ts_caliberate
结果总是报错:selected device is not a touchscreen I understand
先去飞凌的官方论坛逛了一圈,好多人有这个问题,但没一个解决办法有效。
先用cat命令试了下几个event...
分类:
其他好文 时间:
2014-06-05 01:04:27
阅读次数:
321
1. UITouch
的主要方法:C代码-(void)touchesBegan:(NSSet*)toucheswithEvent:(UIEvent*)event;-(void)touchesMoved:(NSSet*)toucheswithEvent:(UIEvent*)event;-(void)t...
分类:
其他好文 时间:
2014-06-04 19:06:53
阅读次数:
341
主要的原理包括:
继承UIView ,重载drawrect和重载触摸事件
待实现的功能还有,路径数组保存等。
#import "testdrow.h"
@implementation testdrow
UIColor *pick_color;
int choose;
UIBezierPath *mpath ;
UIBezierPath *eraser_path;
NSTimer *myt...
分类:
移动开发 时间:
2014-06-03 00:20:36
阅读次数:
323
1,首先需要查看触摸板: 命令:xinput list 结果: ? Virtual core
pointer id=2 [master pointer (3)] ? ? Virtual core XTEST pointer id=4 [slave
poin...
分类:
系统相关 时间:
2014-06-02 10:07:16
阅读次数:
362
AudioPlayer.js是一个响应式、支持触摸操作的HTML5
的音乐播放器。本文是对其官网的说用说明文档得翻译,博主第一次翻译外文。不到之处还请谅解、之处。JS文件地址:http://osvaldas.info/examples/audio-player-responsive-and-touc...
分类:
Web程序 时间:
2014-05-30 19:46:25
阅读次数:
488
Draggabilly 是一个很小的 JavaScript
库,专注于拖放功能。只需要简单的设置参数就可以在你的网站用添加拖放功能。兼容 IE8+ 浏览器,支持多点触摸。可以灵活绑定事件,支持 RequireJS 以及
Bower 安装。
分类:
其他好文 时间:
2014-05-29 16:17:40
阅读次数:
284
有时候我们会需要在界面上拖动view;uiview是继承于uiresponder的,所以可以响应触摸相关的事件。重点是以下一组方法:-
(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event-
(void)touchesMoved...
分类:
移动开发 时间:
2014-05-29 15:23:07
阅读次数:
247
使用触摸屏,首先安装触摸屏矫正程序。下载并解压tslib-1.4,进入主文件夹,运行:1
[root@localhost ~]#./autogen.sh2 [root@localhost ~]#echo
"ac_cv_func_malloc_0_nonnull=yes" >arm-none-linu...
分类:
其他好文 时间:
2014-05-29 14:04:41
阅读次数:
373
cocos2d-x 101次相遇 / 文件夹1 安装和环境搭建 -xcode2 Scenes ,
Director, Layers, Sprites3 建立图片菜单4 在HelloWorld上--建立新场景5 添加一个精灵sprite5.1
缩小sprite并使之完整显示6 actio...
分类:
移动开发 时间:
2014-05-28 02:36:15
阅读次数:
247