GithubHelp home page GithubHelp logo

slidescene's Introduction

#SlideScene

SlideScene is a simple library built with SpriteKit objects to create a "slide show" with images and dialogs. Useful to display some story, splash screens, or transitions.

##Model

#####SlideScene data model is based on 3 different objects:

  1. Story - The parent object that will hold the entire story objects
  2. Slide - The object that will take a background and will contain multiple dialogs
  3. SlideDialog - The object that will contain text and will be added to a SlideScene

4.SlideScene - Extends SpriteKit's SKScene object

##Example

    //Create a scene object
    Slide *mySlide = [[Slide alloc] init];
    [mySlide setBackgroundImage:[UIImage imageNamed:@"beach.jpg"]];
    [mySlide setTitle:@"Beach Slide"];
    
    //Create a dialog object
    SlideDialog *myDialog = [[SlideDialog alloc] init];
    [myDialog setText:@"I'm at the beach!"];
    
    //Add the dialog to the scene
    [mySlide setDialogs:@[myDialog]];
        
    //Create a story object and adds the scenes to it
    Story *story = [[Story alloc] init];
    [story setScenes:@[mySlide]];

    //Creates a slide scene object
    SlideScene *slideScene = [SlideScene sceneWithSize:currentView.bounds.size];
    [slideScene setScaleMode:SKSceneScaleModeResizeFill];
    [currentView presentScene:slideScene];
    
    //Makes the slideScen show the story
    [slideScene showStory:story];

slidescene's People

Contributors

ravelantunes avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

peakpei

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.