How to change the name of the spritebuilder project

I am creating a game in xcode for iPhone using spritebuilder, in the beginning I just named it and now I want to change the name of the sprite developer project. How do I rename a spritebuilder project?

+3


source to share


1 answer


Only manually at the moment:

  • Close SpriteBuilder
  • Open Finder, go to folder projectname.spritebuilder

  • Rename the folder projectname.spritebuilder

    e.g. newname.spritebuilder

    (keep the extension .spritebuilder!)
  • inside the .spritebuilder folder, rename the following files while also keeping their extensions:
    • projectname.approj

      => newname.approj

    • projectname.ccbproj

      => newname.ccbproj

  • Open projectname.xcodeproj

    in Xcode
  • Rename the project in Xcode to newname

    , the name of the project file should change to newname.xcodeproj

    (if not, close xcode and rename it manually in Finder)


It's out of my head. Perhaps I forgot something. Let me know if this happens and I will review it.

See also: "Rename Project" Feature Request

+2


source







All Articles