Can I use python to create flash like browser games?

前端 未结 5 1833
再見小時候
再見小時候 2021-02-03 10:49

is it possible to use python to create flash like browser games? (Actually I want to use it for an economic simulation, but it amounts to the same as a browser game)

Dav

5条回答
  •  北恋
    北恋 (楼主)
    2021-02-03 11:13

    Yes, but there a a number of ways to get there.

    Flash is the client side rendering. You could use Python to generate Flash, or you could use Python to generate some dynamic HTML with Javascript, etc. that was interactive in a similar way.

    But the Python will be running on the server. The Flash, ActionScript, HTML, JavaScript, etc. will all be running on the client.

    So while the answer to the question is yes, I am going to suggest you might need to do more research and ask a better question.

提交回复
热议问题