gpt4 book ai didi

c - 如何使用 clutter_actor_animate 移动窗口/舞台?

转载 作者:行者123 更新时间:2023-11-30 18:00:49 26 4
gpt4 key购买 nike

How to animate or move window using clutter_actor_animate? Here's my code and it didn't work.

clutter_init(&argc, &argv);
ClutterActor stageColor = {0,0,0,255};
ClutterActor *stage = clutter_stage_get_default();
clutter_actor_set_size(stage,512,512);
clutter_stage_set_color(CLUTTER_STAGE(stage),&stage_color);
clutter_actor_animate(stage,CLUTTER_LINEAR, 20000,"x",2500.0,"y",100.0,NULL);

By the way im using clutter1.0.Thanks

最佳答案

您无法为舞台位置设置动画。

这实际上有两个原因:

  • 舞台在场景图中的位置定义为始终为 (0, 0),因为舞台是图中的顶级 actor。
  • 包含舞台的窗口位置由 Clutter 使用的平台上的窗口系统拥有。

这意味着您应该使用平台自己的 API 来更改包含舞台的窗口的位置。

关于c - 如何使用 clutter_actor_animate 移动窗口/舞台?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10227880/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com