This commit is contained in:
2026-01-06 20:25:55 -06:00
parent 50bee7a5c0
commit 0522b967ca
21 changed files with 724 additions and 1244 deletions

View File

@@ -41,7 +41,7 @@ function Tween(obj) {
Tween.prototype.to = function(props, duration, start_time) {
for (var key in props) {
var value = props[key]
if (isa(value, object)) {
if (is_object(value)) {
// Handle nested objects by flattening them
for (var subkey in value) {
var flatKey = key + '.' + subkey