1vanK
1vanK

Character in UTF-8 encoding can have a maximum of 4 code units
https://urho3d.github.io/samples/ * 33_Urho2DSpriterAnimation.as * 49_Urho2DIsometricDemo.as * 50_Urho2DPlatformer.as Reproduсed in both Firefox and Chrome.
`VS + shared + -DURHO3D_STATIC_RUNTIME=1 + debug version` caused this assert https://stackoverflow.com/questions/35310117/debug-assertion-failed-expression-acrt-first-block-header With `-DURHO3D_STATIC_RUNTIME=0` all works perfectly. Probably `-DURHO3D_STATIC_RUNTIME=1` must be disallowed for SHARED version.
LitSolid.glsl ``` vec4 diffInput = texture2D(sDiffMap, vTexCoord.xy); #ifdef ALPHAMASK if (diffInput.a < 0.5) discard; #endif vec4 diffColor = cMatDiffColor * diffInput; ``` Unlit.glsl ``` vec4 diffColor = cMatDiffColor * texture2D(sDiffMap,...
https://github.com/DragonBones/DragonBonesJS/blob/master/docs/DragonBones_4.5_data_format_zh.md "armature":[] is list, should be "armatures":[] "bone": [] -> "bones":[] "slot":[] -> "slots":[] etc
At the moment we have a rule to put dot at the end of a doxygen comment: ```/// Blah blah blah.``` and do not put dot at the end of...
https://discourse.urho3d.io/t/exporting-materials-from-blender-2-83-to-urho3d/5845 Uses new `compare` node so requires latest version of Blender