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.7.tar.gz
(29.0 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.7-py3-none-any.whl
(47.0 kB
view details)
File details
Details for the file defoldsdk-1.3.7.tar.gz.
File metadata
- Download URL: defoldsdk-1.3.7.tar.gz
- Upload date:
- Size: 29.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
219a758f207c53f889f27ef3dd847d7f32fb6f02573318f0084f7b2952e7ac51
|
|
| MD5 |
bc2d821245e1dcdd63de3752be71e810
|
|
| BLAKE2b-256 |
a40313f61579ff88cd25cccced2ad7602996b71af568a78d185d104b90406bbd
|
File details
Details for the file defoldsdk-1.3.7-py3-none-any.whl.
File metadata
- Download URL: defoldsdk-1.3.7-py3-none-any.whl
- Upload date:
- Size: 47.0 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 |
98717a11e20350f131ba7d917faf930ec66b4e5a124c3d1f698aa32246f0ee70
|
|
| MD5 |
6500589405f6db59d2d0151ecfeea5e9
|
|
| BLAKE2b-256 |
637cf4d86b783ae725c05a77acadedaa83dbaf5a9e80d09838daa5e0d08dbb84
|