iPhone 上的《会说话的汤姆猫》应用程序中使用什么软件来制作动画和创建猫

发布于 2024-10-09 05:38:47 字数 230 浏览 3 评论 0原文

我很好奇 iPhone 的会说话的汤姆应用程序中使用什么软件来创建 3D 猫。是用OpenGL ES 完成的吗?

http://itunes.apple.com/us/app /talking-tom-cat/id377194688?mt=8

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/us/app/talking-tom-cat/id377194688?mt=8

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

卸妝后依然美 2024-10-16 05:38:47

好吧,如果它与会说话的汤姆猫有关,那么就没有使用 OpenGL ES...他们只是使用图像并为其设置动画,如下所示:

    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];

如果您想查看他们使用的所有图像,请按照以下步骤操作:

  1. 将免费版本下载到您的 iPhone/iPad。
  2. 在 Mac 或 Windows 计算机上转移您购买的内容。
  3. 然后从中拖动ipa文件 -> 应用程序到您的桌面(只需将应用程序图标从 iTunes 拖到桌面即可)。
  4. 将 .ipa 文件重命名为 .zip 文件。
  5. 解压缩此 zip 文件。您将在其中获得一个名为“Payload”的文件夹。
  6. 打开 .app 文件(它将在 Windows 上自动打开,因为它是 Windows 上的文件夹,
    在 Mac 上右键单击它并选择显示包内容
  7. 在 .app 文件夹中,您将找到一个文件夹,其中包含上述功能使用的所有图像。

希望这有帮助。

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. 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.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文