cocos小菜鳥學習筆記(2)

2021-08-19 11:21:46 字數 629 閱讀 2946

8、ccmoveto建立的兩個引數(float duration,const ccpoint& position),第乙個引數為動作執行時間,第二個引數為移動目的座標;

ccmoveby的引數(float duration,const ccpoint&deltaposition),第乙個引數也是時間,但第二個引數是要移動的距離,

例如:ccp(250,150)為向x方向移動250的距離,y方向移動150的距離。

ccscaleto的create三引數:float duration:動作持續時間,單位秒;

float sx:x方向拉伸值;

float sy:y方向拉伸值;

ccscaleby引數與ccscaleto相同,區別在於它是在變化後的精靈上再次拉伸。

ccblink的create兩個引數:float duration:動作持續時間,單位秒;

unsigned int ublinks:閃爍次數;

//把幾個行為都放到init函式裡,發現幾個行為同時執行,也就是移動的同時在拉伸,也在閃爍,為什麼會這樣?

9、一般只有需要使用到觸控事件時在繼承cclayer,如:cctouchesbegan,cctouesmoved,cctouchesended,cctouchescancelled等。

python 小菜鳥筆記一

usr bin env python encoding utf 8 import pyodbc import pandas as pd import numpy as np sql select 產品線,終端,品規,銷售模式 cast year 日期1 as varchar 50 right 00 ...

小菜鳥學習Python之路 filter(素數)

設計思路 素數 大於1的自然數,最小的素數是2。約數只有1和自身的自然數為素數 大於2的偶數都不是素數 step1 生成乙個以3為首的奇數序列 generator def odd iter n 1 while true n n 2 yield n這是乙個無限序列 step 2 定義乙個篩選函式 de...

cocos2d 學習筆記 2

ccspritebatchnode的作用很像cclayer,因為它本身並不顯示在螢幕上。不過 你只能把ccsprite加入ccspritebatchnode。ccspritebatchnode 將乙個檔名作為引數,使用這個引數的原因是所有被新增進 ccspritebatchnode的ccsprite...