Getting more of the file loading working. Backboard, Artboards, Objects, and Animations are now loading. Animation properties are next.

This commit is contained in:
Luigi Rosso
2020-07-11 18:03:52 -07:00
parent 54dbb325e3
commit 20c629987c
92 changed files with 972 additions and 150 deletions

19
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/dev/test/include",
"${workspaceFolder}/rive/include"
],
"defines": [],
"macFrameworkPath": [],
"compilerPath": "/usr/local/bin/arm-none-eabi-gcc",
"cStandard": "gnu11",
"cppStandard": "gnu++14",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}

5
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"files.associations": {
"type_traits": "cpp"
}
}