playMaker

Author Topic: Alphabet in lowercase, uppercase and mixed  (Read 2573 times)

gegagome

  • Playmaker Newbie
  • *
  • Posts: 5
Alphabet in lowercase, uppercase and mixed
« on: August 12, 2013, 05:07:56 PM »
Hello everyone

I want to make a kids app which will have all 26 letters plus ñ for Spanish.

Can anyone please suggest a method to build a series of 27 game objects with lowercase, uppercase and mixed versions for each letter?

I have 54 models total (27 x 2) which will need to be accessed using a slide/scroll and the three case variations by swiping up or down.

Any ideas would be appreciated

Thanks fellow PlayMakers!
« Last Edit: August 14, 2013, 12:52:34 AM by gegagome »

jeanfabre

  • Administrator
  • Hero Member
  • *****
  • Posts: 15500
  • Official Playmaker Support
Re: Alphabet in lowercase, uppercase and mixed
« Reply #1 on: August 14, 2013, 04:49:19 AM »
Hi,

 I suggest you use a 2d framework such as ngui or 2d toolkit for this.

-- make your alphabet as a textured font
-- use the framework to list them all ( during editing, you can create that list manually) into a scrollable list or table.

If you want to automate the process, you could use ArrayMaker and  and a text file that you parse and create an object everytime. there is an wordmatch example that would be very similar to what you are willing to do ( only it would create objects for each entry instead of looking it up)

https://hutonggames.fogbugz.com/default.asp?W715

bye,

Jean

gegagome

  • Playmaker Newbie
  • *
  • Posts: 5
Re: Alphabet in lowercase, uppercase and mixed
« Reply #2 on: August 14, 2013, 01:13:54 PM »
Hi Jean

Thank you for your reply.

The 2D framework obviously wouldn't work for 3D models of letters. In this app, kids are able to rotate the letters.

Any ideas?


Thanks again

Alex Chouls

  • Administrator
  • Hero Member
  • *****
  • Posts: 4003
  • Official Playmaker Support
    • LinkedIn
Re: Alphabet in lowercase, uppercase and mixed
« Reply #3 on: August 14, 2013, 02:28:37 PM »
There are many 3d text tools on the asset store:
https://www.assetstore.unity3d.com/#/search/3d%20text

I think some of them have free versions...

Or you could use SketchUp:
http://designshack.net/articles/graphics/create-stunning-3d-text-free-with-sketchup/

There might even be free online tools where you could enter text and download 3d models...

gegagome

  • Playmaker Newbie
  • *
  • Posts: 5
Re: Alphabet in lowercase, uppercase and mixed
« Reply #4 on: August 14, 2013, 11:33:18 PM »
Sorry for the misunderstanding guys, my bad.

I already have the letters in fbx format (out of Blender) what I need help with is swiping sideways letter by letter and swipe vertically to load uppercase, lowercase and mixed.

Thanks again!

gegagome

  • Playmaker Newbie
  • *
  • Posts: 5
Re: Alphabet in lowercase, uppercase and mixed
« Reply #5 on: August 14, 2013, 11:42:14 PM »
After buying PlayMaker from UAS, I decided to attempt to remake my app jangarces.com/kidpedia

A developer has done most of the work, but I want to be able to do it myself, hopefully using PlayMaker.

Thanks Jean and Alex