, у тебя такая же проблема или это рофл какой-то?
Kivy looks for a Kv file with the same name as your App class in lowercase, minus “App” if it ends with ‘App’
from myapp import MyApp
if __name__ == '__main__':
MyApp().run()
Transform(
transform: matrix4,
child: Stack(
children: <Widget>[
RepaintBoundary(
key: boundaryKey,
child: Image(),
),
MarkersWidget(),
],
),
);
GlobalKey boundaryKey = GlobalKey();
The view is generatad by processing the data, essentially a list of dicts, and uses these dicts to generate instances of the viewclass as required.
RecycleView:
id: rv
viewclass: 'CheckBox'
data: [{'active': True} for i in range(3)]
RecycleBoxLayout:
default_size: None, dp(40)
default_size_hint: 1, None
size_hint_y: None
height: self.minimum_height
orientation: 'vertical'
How to Bake Textures in Blender and Export to Unity