ios - Efficiently convert an area to matrix in Sprite Kit -
i new sprite kit. looking way convert area matrix, , put objects inside matrix.
let assume, have *skspritenode matrix of size 100 x 100 i.e height , width both 100.i want turn 10x10 matrix out of 100 x 100 size. have turn matrix, , put objects within matrix of size 10x10.
what best way of converting grid, other objects can placed of size of 10 x 10 anywhere in matrix?
in objective c
you should create object , give properties column, row.
this algorithm of creating puzzle game candy crush :d
-(void)createrandomly { (int row = 0; row < rows; row++) { (int col = 0; col < columns; col++) { float dimension = self.frame.size.width / columns; int randombubble = arc4random() % valuescount; bubble *node = [[bubble alloc] initwithrow:row column:col size:cgsizemake(dimension, dimension)]; [self.scene addchild:node]; } } }
i recomend watch tutorial: https://www.youtube.com/watch?v=kpfwm8cz10u&spfreload=10
i think tutorial better :)
Comments
Post a Comment