Defold protobuff compiled to python package
Project description
defoldsdk
defold protbuff python
installling
pip install defoldsdk
usage :
all proto objects are under the namespace sdk
from defoldsdk import sdk
for i in sdk :
print(i)
x = sdk.Texture()
example load collection from string
from defoldsdk import sdk
from google.protobuf.json_format import MessageToJson
from google.protobuf.text_format import MessageToString, Parse
content = '''
name: "menu"
scale_along_z: 0
embedded_instances {
id: "go"
data: "components {\\n"
" id: \\"menu\\"\\n"
" component: \\"/examples/collection/proxy/menu.gui\\"\\n"
" position {\\n"
" x: 0.0\\n"
" y: 0.0\\n"
" z: 0.0\\n"
" }\\n"
" rotation {\\n"
" x: 0.0\\n"
" y: 0.0\\n"
" z: 0.0\\n"
" w: 1.0\\n"
" }\\n"
"}\\n"
""
position {
x: 0.0
y: 0.0
z: 0.0
}
rotation {
x: 0.0
y: 0.0
z: 0.0
w: 1.0
}
scale3 {
x: 1.0
y: 1.0
z: 1.0
}
}
'''
collection = sdk.CollectionDesc()
Parse(content.encode('utf-8'), collection)
print(MessageToString(collection))
print(MessageToJson(collection,preserving_proto_field_name=True))
output :
name: "menu"
scale_along_z: 0
embedded_instances {
id: "go"
data: "components {\n id: \"menu\"\n component: \"/examples/collection/proxy/menu.gui\"\n position {\n x: 0.0\n y: 0.0\n z: 0.0\n }\n rotation {\n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0\n }\n}\n"
position {
x: 0.0
y: 0.0
z: 0.0
}
rotation {
x: 0.0
y: 0.0
z: 0.0
w: 1.0
}
scale3 {
x: 1.0
y: 1.0
z: 1.0
}
}
{
"name": "menu",
"scale_along_z": 0,
"embedded_instances": [
{
"id": "go",
"data": "components {\n id: \"menu\"\n component: \"/examples/collection/proxy/menu.gui\"\n position {\n x: 0.0\n y: 0.0\n z: 0.0\n }\n rotation {\n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0\n }\n}\n",
"position": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"rotation": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 1.0
},
"scale3": {
"x": 1.0,
"y": 1.0,
"z": 1.0
}
}
]
}```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
defoldsdk-1.3.5.tar.gz
(29.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
defoldsdk-1.3.5-py3-none-any.whl
(47.1 kB
view details)
File details
Details for the file defoldsdk-1.3.5.tar.gz.
File metadata
- Download URL: defoldsdk-1.3.5.tar.gz
- Upload date:
- Size: 29.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1415793bd5963fa805472dbf9f73bc06a9b7c37b1e4fb4f8580bcd6575ac8ff0
|
|
| MD5 |
0c1b8fc4739c55a020a0880ac78a4b85
|
|
| BLAKE2b-256 |
a1e09c275076544bedc7b7871b1d5be3a79d135fcfb2fb397f07c4561d03b603
|
File details
Details for the file defoldsdk-1.3.5-py3-none-any.whl.
File metadata
- Download URL: defoldsdk-1.3.5-py3-none-any.whl
- Upload date:
- Size: 47.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da29bb464b3f7e98a2982624fa2472c8f3532a2f4fac8f262851ea545c31d656
|
|
| MD5 |
eb14dad675bb40bc96dba0e76f2445ba
|
|
| BLAKE2b-256 |
6e5267cbeff6f55ae4ac1957a92bedabc735fa689154becbc13dd7047740d3f0
|