Skip to content

Commit

Permalink
fixed auth token issues
Browse files Browse the repository at this point in the history
  • Loading branch information
azaleacolburn committed Jul 8, 2024
1 parent 6364837 commit 7b85e62
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 3 additions & 1 deletion exporter/SynthesisFusionAddin/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,6 @@ site-packages
# env files
**/.env

proto/proto_out
proto/proto_out

secrets
3 changes: 1 addition & 2 deletions exporter/SynthesisFusionAddin/proto/deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@

import adsk.core
import adsk.fusion

from src.general_imports import INTERNAL_ID
from ..src.general_imports import INTERNAL_ID

system = platform.system()

Expand Down
2 changes: 1 addition & 1 deletion fission/src/aps/APS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class APS {
["response_type", "code"],
["client_id", CLIENT_ID],
["redirect_uri", callbackUrl],
["scope", "data:read"],
["scope", "data:create"],
["nonce", Date.now().toString()],
["prompt", "login"],
["code_challenge", codeChallenge],
Expand Down
2 changes: 0 additions & 2 deletions fission/src/systems/physics/PhysicsSystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -723,8 +723,6 @@ class PhysicsSystem extends WorldSystem {
let substeps = Math.max(1, Math.floor((lastDeltaT / STANDARD_SIMULATION_PERIOD) * STANDARD_SUB_STEPS))
substeps = Math.min(MAX_SUBSTEPS, Math.max(MIN_SUBSTEPS, substeps))

console.log(`DeltaT: ${lastDeltaT.toFixed(5)}, Substeps: ${substeps}`)

this._joltInterface.Step(lastDeltaT, substeps)
}

Expand Down

0 comments on commit 7b85e62

Please sign in to comment.