SlideShare a Scribd company logo
1 of 68
Download to read offline
502	–	Introduction	to	Sprite	Kit

503	–	Designing	Games	with	
Sprite	Kit
2013/07/28	
Lawrence Tseng
teaualune@gmail.com
Agenda
• Prologue	
• Introduction	
• SKNode	
• SKAction	
• Physic	Engine	
• SKTexture	
• Particle	System	
• Compare	w/	Cocos2d	
• Demo
PROLOGUE
Before	we	start…
• …	what	is	sprite?
Sprite
• A	sprite	is	a	two-dimensional	
image	or	animation	that	is	
integrated	into	a	larger	
scene.	(Wikipedia)
In	this	talk…
• Introduce	Sprite	Kit	
• Node,	actions,	texture,	etc.	
• Combine	session	502	&	part	of	503	
• Sprite	Kit	v.s.	Cocos2d
Not	in	this	talk…
• Game	Kit	
• Game	development	details	in	session	503	
• Many	code	examples
INTRODUCTION
Basic	structure,	game	loop
What	is	included	in	Sprite	Kit?
• Images	of	sprites,	shapes	and	particles	
• Animations	
• Physics	
• Audio/video	
• Visual	effects
Basic	Structure
• UIView/NSView	
– SKView	
• Scene	
– Node	
– (+	Physics)	
– (+	Actions)
Basic	Structure
SKScene
Background
Sky Tree
Foreground
Player Enemy
HUD
HP
All	of	them	are	SKNodes!
Game	Loop
SPRITE	KIT	NODES
Introduction	to	various	kinds	of	SKNodes
SKNode	Hierarchy
SKNode
SKLabelNode SKEmitterNode SKVideoNode SKShapeNode SKSpriteNode SKEffectNode
SKScene
SKCropNode
SKNode
• Do	not	display	real	
things	
• Use	as	the	role	of	
composite	in	
composite	pattern	
• Has	basic	properties:	
– Position	
– Width	&	height	
– Alpha	
– Is	hidden	
– X	scaling	&	Y	scaling
SKSpriteNode
• Display	sprites	on	the	screen	
• Has	explicitly	size	
• Can	display	colors,	texture	
• Texture	atlas	support
SKSpriteNode
• Convenient	one-line	creation
SKSpriteNode *sprite = [SKSpriteNode spriteNodeWithImageNamed:
@"hero.png"];
SKSpriteNode
• Use	color	blend	factor	to	create	new	sprite
SKSpriteNode
SKLabelNode
• Similar	as	UILabel	&	CCLabel	
• Single-line	text	as	a	SKNode	
• System	fonts	
• Animatable
SKEmitterNode
• Use	for	particle	system	
• Advanced	keyframe	sequence	controls	
• Built-in	particle	editor
SKVideoNode
• One-line	creation	from	MP4	files	
• One-line	creation	from	AVPlayer	
• Place	anywhere,	e.g.	background	
• Physics	enabled
[SKVideoNode videoNodeWithVideoFileNamed:@"video.mp4"];
SKShapeNode
• Dynamic	shapes	with	CGPath	
• Rendered	in	hardware	
• Stroke/fill
SKEffectNode
• Group	opacity	&	group	blend	
• Can	be	cached	
• Wrap	with	a	CIFilter
SKCropNode
• Use	to	mask	a	node	(any	SKNode)	
• SKCropNode	can	have	children,	can	run	
SKActions…
SKACTION
Actions,	sequences,	groups,	compositions,	specialty,	customs
SKAction	Overview
• Single	class:	SKAction	
– As	a	role	of	Façade	
• Chainable,	reusable,	readable	
• Looks	like	scripting	language
SKAction:	basic	creation
SKAction:	running	actions
• Run	action	immediately	
• Copy	on	add,	remove	on	completion	
• Can	be	repeated	N	times	or	forever
SKAction:	sequences
SKAction:	groups
SKAction:	composition
SKAction:	timing
SKAction:	specialty
• Animate	with	textures	
• Animate	with	a	path	(CGPath)	
• Fade	in/out,	remove	from	parent	
• Short	sounds	playback
SKAction:	custom
• Run	with	blocks!
PHYSIC	ENGINE
Physics	body,	physics	world,	collision	groups
Physics	Simulation
Physics	Simulation
Physics	Simulation
• Sprite	kit	manages	synchronization	details	
• Physic-enabled	nodes	+	no-physic	nodes
SKPhysicsBody
• Multiple	types	of	
shape:	
– Circle	
– Rectangle	
– EdgeLoopFromRect	
– Edge	
– Polygon	
– EdgeChain	
– EdgeLoopFromPath	
• Directly	set	to	
SKNode’s	property
SKPhysicsWorld
• Combine	with	SKScene	
• Has	gravity	property	
• Manage	collision	details
SKPhysicsContact
SKPhysicsContact
Collision	Groups
Collision	Groups
SKTEXTURE
Texture	creation,	texture	on	SKNodes,	texture	atlas,	texture	in	Xcode
About	SKTexture
• Represents	sprite	bitmap	data	
• Managed	by	framework
Create	a	SKTexture
Apply	texture	on	nodes
Texture	Atlas
Why	Texture	Atlas?
• Less	memory	consumption	
• Minimizes	disk	I/O	
• Speed	up	render	speed
Create	a	Texture	Atlas
• TexturePacker	
• Texture	Atlas	Toolkit	
• Texture	Atlas	Maker	
• SpriteMapper	
• Xcode	5!!!
Create	a	Texture	Atlas	(Xcode)
1. Turn	on	texture	atlas	build	setting	
2. Put	all	PNG	files	into	a	.atlas	directory	(e.g.	
hero.atlas)	
3. Drag	the	folder	into	the	Xcode	project	
4. Done!
Memory	Consumption
Using	Texture	Atlas
• No	need	to	deal	with	plist!!
PARTICLE	SYSTEM
SKEmitterNode,	particle	effect	editor
Particles	Overview
• Use	particle	system	for	special	effects	
• Xcode	particle	system	editor	
• Apply	sequences,	actions	to	the	particle
Particle	Editor
• Integrated	into	Xcode	
• Edit	all	SKEmitterNode	attributes	visually	
• Don’t	need	to	hardcode	particle	in	codes	
• Each	particle	effect	is	stored	in	a	.sks	file
Keyframe	Sequences
• Control	lifetime	color/scale	transition	for	each	
particle
Particle	Action
• Execute	actions	on	particles	
• Invoke	by	emitter
COCOS2D	COMPARISON
CCNode	v.s.	SKNode
• Both	implements	composite	pattern	to	
provide	tree	structure	
• Similar	subclasses	(leaf):	CCSprite,	
SKSpriteNode…
Actions	&	Animations
• Cocos2d	has	many	classes	to	deal	with:	
CCAction,	CCSpawnAction,	…	
• Sprite	Kit	has	only	SKAction	as	Façade,	thus	
decreases	coupling	well
Physic	Engine
• Cocos2d	integrates	with	Box2d/Chipmunk;	
Sprite	Kit	itself	has	one	
• Sprite	Kit	physic	engine	is	more	intuitive	
• Cocos2d	provides	visual	tools	to	build	physic	
body;	In	Sprite	Kit	they	can	only	be	hardcoded
Texture	Atlas
• Picture	&	plist	files	have	to	be	created	by	3rd	
services	for	Cocos2d	
• Sprite	Kit	has	super-lazy	texture	atlas	generator	
– And	it	provides	optimization	feature,	which	is	locked	to	
pay	in	some	tools	
• Unlike	Cocos2d,	Sprite	Kit	does	not	have	to	deal	
with	plist	details
Misc
• Cocos2d	is	somewhat	cross-platform;	Sprite	
Kit	only	targets	for	iOS7	&	OS	X	10.9	
• Cocos2d	is	open	source,	but	Sprite	Kit	is	not	
• Cocos2d	has	stage	editor
DEMO
https://github.com/teaualune/sk-shootduck
THANK	YOU!

More Related Content

Viewers also liked

UI kit. Конструктор для больших проектов
UI kit. Конструктор для больших проектовUI kit. Конструктор для больших проектов
UI kit. Конструктор для больших проектовDenis Ilyin
 
SpriteKit (AnjLab Tech Talks)
SpriteKit (AnjLab Tech Talks)SpriteKit (AnjLab Tech Talks)
SpriteKit (AnjLab Tech Talks)AnjLab
 
Improving Site Performace Using Css Sprite
Improving Site Performace Using Css SpriteImproving Site Performace Using Css Sprite
Improving Site Performace Using Css SpriteShyamala Prayaga
 
Sprite kitでの横スクロールジャンプ アクションゲーム開発
Sprite kitでの横スクロールジャンプ アクションゲーム開発Sprite kitでの横スクロールジャンプ アクションゲーム開発
Sprite kitでの横スクロールジャンプ アクションゲーム開発studioshin
 
Britania Biscuit - A details presentation on various products & its marketing...
Britania Biscuit - A details presentation on various products & its marketing...Britania Biscuit - A details presentation on various products & its marketing...
Britania Biscuit - A details presentation on various products & its marketing...Armaan Anand
 
Beyond pink: Research on marketing to women consumers
Beyond pink: Research on marketing to women consumersBeyond pink: Research on marketing to women consumers
Beyond pink: Research on marketing to women consumersJack Morton Worldwide
 
20537240 Parle G Marketing Strategy
20537240 Parle G Marketing Strategy20537240 Parle G Marketing Strategy
20537240 Parle G Marketing Strategyravi224
 
iOS 2D Gamedev @ CocoaHeads
iOS 2D Gamedev @ CocoaHeadsiOS 2D Gamedev @ CocoaHeads
iOS 2D Gamedev @ CocoaHeadsAlain Hufkens
 
Marketing research
Marketing researchMarketing research
Marketing researchArian Hadi
 
Research hypothesis
Research hypothesisResearch hypothesis
Research hypothesisNursing Path
 
DEFINING THE MARKETING RESEARCH PROBLEM AND DEVELOPING AN APPROACH
DEFINING THE MARKETING RESEARCH PROBLEM AND DEVELOPING AN APPROACHDEFINING THE MARKETING RESEARCH PROBLEM AND DEVELOPING AN APPROACH
DEFINING THE MARKETING RESEARCH PROBLEM AND DEVELOPING AN APPROACHShashank Kapoor
 

Viewers also liked (14)

UI kit. Конструктор для больших проектов
UI kit. Конструктор для больших проектовUI kit. Конструктор для больших проектов
UI kit. Конструктор для больших проектов
 
SpriteKit (AnjLab Tech Talks)
SpriteKit (AnjLab Tech Talks)SpriteKit (AnjLab Tech Talks)
SpriteKit (AnjLab Tech Talks)
 
LaTeX Tutorial
LaTeX TutorialLaTeX Tutorial
LaTeX Tutorial
 
Improving Site Performace Using Css Sprite
Improving Site Performace Using Css SpriteImproving Site Performace Using Css Sprite
Improving Site Performace Using Css Sprite
 
Sprite kitでの横スクロールジャンプ アクションゲーム開発
Sprite kitでの横スクロールジャンプ アクションゲーム開発Sprite kitでの横スクロールジャンプ アクションゲーム開発
Sprite kitでの横スクロールジャンプ アクションゲーム開発
 
Britania final
Britania finalBritania final
Britania final
 
Britania Biscuit - A details presentation on various products & its marketing...
Britania Biscuit - A details presentation on various products & its marketing...Britania Biscuit - A details presentation on various products & its marketing...
Britania Biscuit - A details presentation on various products & its marketing...
 
Beyond pink: Research on marketing to women consumers
Beyond pink: Research on marketing to women consumersBeyond pink: Research on marketing to women consumers
Beyond pink: Research on marketing to women consumers
 
20537240 Parle G Marketing Strategy
20537240 Parle G Marketing Strategy20537240 Parle G Marketing Strategy
20537240 Parle G Marketing Strategy
 
iOS 2D Gamedev @ CocoaHeads
iOS 2D Gamedev @ CocoaHeadsiOS 2D Gamedev @ CocoaHeads
iOS 2D Gamedev @ CocoaHeads
 
Sprite ppt
Sprite pptSprite ppt
Sprite ppt
 
Marketing research
Marketing researchMarketing research
Marketing research
 
Research hypothesis
Research hypothesisResearch hypothesis
Research hypothesis
 
DEFINING THE MARKETING RESEARCH PROBLEM AND DEVELOPING AN APPROACH
DEFINING THE MARKETING RESEARCH PROBLEM AND DEVELOPING AN APPROACHDEFINING THE MARKETING RESEARCH PROBLEM AND DEVELOPING AN APPROACH
DEFINING THE MARKETING RESEARCH PROBLEM AND DEVELOPING AN APPROACH
 

Similar to Introduction to Sprite Kit

Game development -session on unity 3d
Game development -session on unity 3d Game development -session on unity 3d
Game development -session on unity 3d Muhammad Maaz Irfan
 
Game Development with Unity
Game Development with UnityGame Development with Unity
Game Development with Unitydavidluzgouveia
 
[KJ-Code] Sprite Kit 설명 By Ji Sanghoon
[KJ-Code] Sprite Kit 설명 By Ji Sanghoon[KJ-Code] Sprite Kit 설명 By Ji Sanghoon
[KJ-Code] Sprite Kit 설명 By Ji Sanghoon상훈 지
 
Dojo, from scratch to result
Dojo, from scratch to resultDojo, from scratch to result
Dojo, from scratch to resultNikolai Onken
 
Stefan stolniceanu spritekit, 2 d or not 2d
Stefan stolniceanu   spritekit, 2 d or not 2dStefan stolniceanu   spritekit, 2 d or not 2d
Stefan stolniceanu spritekit, 2 d or not 2dCodecamp Romania
 
Stefan stolniceanu spritekit, 2 d or not 2d
Stefan stolniceanu   spritekit, 2 d or not 2dStefan stolniceanu   spritekit, 2 d or not 2d
Stefan stolniceanu spritekit, 2 d or not 2dCodecamp Romania
 

Similar to Introduction to Sprite Kit (6)

Game development -session on unity 3d
Game development -session on unity 3d Game development -session on unity 3d
Game development -session on unity 3d
 
Game Development with Unity
Game Development with UnityGame Development with Unity
Game Development with Unity
 
[KJ-Code] Sprite Kit 설명 By Ji Sanghoon
[KJ-Code] Sprite Kit 설명 By Ji Sanghoon[KJ-Code] Sprite Kit 설명 By Ji Sanghoon
[KJ-Code] Sprite Kit 설명 By Ji Sanghoon
 
Dojo, from scratch to result
Dojo, from scratch to resultDojo, from scratch to result
Dojo, from scratch to result
 
Stefan stolniceanu spritekit, 2 d or not 2d
Stefan stolniceanu   spritekit, 2 d or not 2dStefan stolniceanu   spritekit, 2 d or not 2d
Stefan stolniceanu spritekit, 2 d or not 2d
 
Stefan stolniceanu spritekit, 2 d or not 2d
Stefan stolniceanu   spritekit, 2 d or not 2dStefan stolniceanu   spritekit, 2 d or not 2d
Stefan stolniceanu spritekit, 2 d or not 2d
 

Recently uploaded

Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceanilsa9823
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 

Recently uploaded (20)

Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 

Introduction to Sprite Kit