Skip to content

a minecraft bedrock addon python-gen tool chain. support intellisense

License

Notifications You must be signed in to change notification settings

KAIYOHUGO/addon-gen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

addon-gen

support language

  • python pypi
    • binding
    • event
    • component
    • object

example

python

from addongen import server, serverevent

system = server.registerSystem(0, 0)


def helloworld():
    b = system.createEventData(serverevent.displayChatEvent)
    b.data.message = "hello world"
    system.broadcastEvent(serverevent.displayChatEvent, b)


system.update(helloworld)

more infomation