是用什么软件制作动画,并在iPhone会说话的汤姆应用程序中创建的猫 [英] What software is used to animate and create the Cat in Talking Tom application in iphone

查看:176
本文介绍了是用什么软件制作动画,并在iPhone会说话的汤姆应用程序中创建的猫的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我很好奇,想知道是什么软件是用来在iPhone上的会说话的tom应用程序创建的3D猫。难道是用OpenGL ES做了什么?

I was curious to know what software is used to create the 3D Cat in the talking tom app in iphone. Is it done with OpenGL ES?

http://itunes.apple.com/美国/ APP /聊天,汤姆猫/ id377194688?吨= 8

推荐答案

那么,如果它与说话的tom那么有没有OpenGL ES的使用......他们都仅仅使用图像和动画他们,是这样的:

Well if it's related to talking tom then there is no OpenGL ES use... they are simply using images and animating them, something like this:

    aniImage = [[UIImageView alloc] init];
UIImage* opa1 = [UIImage imageNamed:@"o1.png"];
UIImage* opa2 = [UIImage imageNamed:@"o2.png"];
UIImage* opa3 = [UIImage imageNamed:@"o3.png"];
UIImage* opa4 = [UIImage imageNamed:@"o4.png"];
UIImage* opa5 = [UIImage imageNamed:@"o5.png"];
UIImage* opa6 = [UIImage imageNamed:@"o6.png"];
UIImage* opa7 = [UIImage imageNamed:@"o7.png"];
UIImage* opa8 = [UIImage imageNamed:@"o8.png"];
UIImage* opa9 = [UIImage imageNamed:@"o9.png"];
UIImage* opa10 = [UIImage imageNamed:@"o10.png"];
UIImage* opa11 = [UIImage imageNamed:@"o11.png"];
UIImage* opa12 = [UIImage imageNamed:@"o12.png"];
UIImage* opa13 = [UIImage imageNamed:@"o13.png"];
UIImage* opa14 = [UIImage imageNamed:@"o14.png"];
UIImage* opa15 = [UIImage imageNamed:@"o15.png"];
UIImage* opa16 = [UIImage imageNamed:@"o16.png"];
UIImage* opa17 = [UIImage imageNamed:@"o17.png"];
UIImage* opa18 = [UIImage imageNamed:@"o18.png"];
NSArray *imgsArr = [NSArray arrayWithObjects:opa1, opa2, opa3, opa4, 
                          opa5, opa6, opa7, opa8, opa9, opa10, opa11, opa12, opa13, opa14, opa15, opa16, opa17, opa18, nil];
[aniImage setAnimationImages:imagesOpacity];
[aniImage setAnimationRepeatCount:1.0];
[aniImage setAnimationDuration:0.2];

如果你想看到所有的图像,他们使用请按照下列步骤操作:

If you want to see all the images they are using follow these steps:

  1. 下载的免费版本到您的iPhone / iPad的。
  2. 转移您的购买你的Mac或Windows电脑上。
  3. 然后从拖动IPA文件的 - > 应用到桌面(只是从iTunes到桌面上拖动应用程序图标)
  4. 重命名.ipa文件为.zip文件。
  5. 在此解压压缩文件。你会得到一个在其名为有效载荷文件夹中。
  6. 打开.app文件(它将在Windows自动打开,因为它是在Windows文件夹, 在Mac上右键单击它并选择显示包内容
  7. 在的.app文件夹中,你会发现它包含了所有使用上述函数的图像的文件夹。
  1. Download the free version to your iPhone/iPad.
  2. Transfer your purchases on your Mac or Windows computer.
  3. Then drag the ipa file from Library -> Apps to your desktop (just drag the app icon from iTunes to desktop).
  4. Rename the .ipa file to .zip file.
  5. Extract this zip file. You will get a folder named "Payload" in it.
  6. Open the .app file (it will open on Windows automatically because it is a folder on Windows, on Mac right click on it and select Show package content.
  7. In the .app folder you will find a folder which contains all the images used by the above function.

希望这有助于。

这篇关于是用什么软件制作动画,并在iPhone会说话的汤姆应用程序中创建的猫的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆