Skip to content

Commit c545576

Browse files
Implemented occt text wires, refactored some base types.
1 parent 8f52c8d commit c545576

76 files changed

Lines changed: 713 additions & 118 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

packages/dev/babylonjs/lib/api/bitbybit-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export class BitByBitBase {
9595
this.asset = new Asset();
9696
this.logic = new Logic();
9797
this.json = new JSONBitByBit(this.context);
98-
this.text = new TextBitByBit();
98+
this.text = new TextBitByBit(this.point);
9999
this.dates = new Dates();
100100
this.lists = new Lists();
101101
}

packages/dev/babylonjs/lib/api/bitbybit/babylon/camera/arc-rotate-camera.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as BABYLON from "@babylonjs/core";
22
import { Context } from "../../../context";
3-
import * as Inputs from "../../../inputs/inputs";
3+
import * as Inputs from "../../../inputs";
44

55
export class BabylonArcRotateCamera {
66

packages/dev/babylonjs/lib/api/bitbybit/babylon/camera/camera.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as BABYLON from "@babylonjs/core";
22
import { Context } from "../../../context";
33
import * as Inputs from "../../../inputs/inputs";
4-
import { Base } from "../../../inputs/inputs";
4+
import { Base } from "../../../inputs";
55
import { BabylonArcRotateCamera } from "./arc-rotate-camera";
66
import { BabylonFreeCamera } from "./free-camera";
77
import { BabylonTargetCamera } from "./target-camera";

packages/dev/babylonjs/lib/api/bitbybit/babylon/camera/free-camera.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as BABYLON from "@babylonjs/core";
22
import { Context } from "../../../context";
3-
import * as Inputs from "../../../inputs/inputs";
3+
import * as Inputs from "../../../inputs";
44

55
export class BabylonFreeCamera {
66

packages/dev/babylonjs/lib/api/bitbybit/babylon/camera/target-camera.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as BABYLON from "@babylonjs/core";
22
import { Context } from "../../../context";
3-
import * as Inputs from "../../../inputs/inputs";
3+
import * as Inputs from "../../../inputs";
44

55
export class BabylonTargetCamera {
66

packages/dev/babylonjs/lib/api/bitbybit/babylon/gaussian-splatting.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
import * as BABYLON from "@babylonjs/core";
33
import { Context } from "../../context";
4-
import * as Inputs from "../../inputs/inputs";
4+
import * as Inputs from "../../inputs";
55

66
export class BabylonGaussianSplatting {
77

packages/dev/babylonjs/lib/api/bitbybit/babylon/gizmo/axis-drag-gizmo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as BABYLON from "@babylonjs/core";
22
import { Context } from "../../../context";
3-
import * as Inputs from "../../../inputs/inputs";
3+
import * as Inputs from "../../../inputs";
44

55
export class BabylonGizmoAxisDragGizmo {
66

packages/dev/babylonjs/lib/api/bitbybit/babylon/gizmo/axis-scale-gizmo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as BABYLON from "@babylonjs/core";
22
import { Context } from "../../../context";
3-
import * as Inputs from "../../../inputs/inputs";
3+
import * as Inputs from "../../../inputs";
44

55
export class BabylonGizmoAxisScaleGizmo {
66

packages/dev/babylonjs/lib/api/bitbybit/babylon/gizmo/bounding-box-gizmo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as BABYLON from "@babylonjs/core";
22
import { Context } from "../../../context";
3-
import * as Inputs from "../../../inputs/inputs";
3+
import * as Inputs from "../../../inputs";
44

55
export class BabylonGizmoBoundingBoxGizmo {
66

packages/dev/babylonjs/lib/api/bitbybit/babylon/gizmo/gizmo-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as BABYLON from "@babylonjs/core";
22
import { Context } from "../../../context";
3-
import * as Inputs from "../../../inputs/inputs";
3+
import * as Inputs from "../../../inputs";
44

55
export class BabylonGizmoBase {
66

0 commit comments

Comments
 (0)