Skip to content

Commit

Permalink
forgot to add files
Browse files Browse the repository at this point in the history
  • Loading branch information
SignpostMarv committed Nov 9, 2024
1 parent a1e01e1 commit 901232b
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import {decimal_string__type, integer_string__type} from '../../common/scalar';

import {empty_object__type} from '../../common/unassigned';

import {common_base__FGBuildable__base__type} from './FGBuildable';

export type common_base__FGBuildableConveyorBelt__type =
common_base__FGBuildableConveyorBelt__base__type & {
mMeshLength: decimal_string__type;
mSplineData: '';
mCustomSkins: [
'/Game/FactoryGame/Buildable/-Shared/Customization/Skins/SkinDesc_Test1.SkinDesc_Test1_C',
...'/Game/FactoryGame/Buildable/-Shared/Customization/Skins/SkinDesc_Test1.SkinDesc_Test1_C'[],
];
};

export type common_base__FGBuildableConveyorBelt__base__type =
common_base__FGBuildable__base__type & {
mItemMeshMap: empty_object__type;
mSpeed: decimal_string__type;
mConveyorChainFlags: integer_string__type;
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import {decimal_string__type, boolean__type} from '../../common/scalar';

import {
transformation__type,
common_base__mSnappedPassthroughs__type,
} from '../../common/unassigned';

import {common_base__FGBuildableConveyorBelt__base__type} from './FGBuildableConveyorBelt';

export type common_base__FGBuildableConveyorLift__type =
common_base__FGBuildableConveyorBelt__base__type & {
mMeshHeight: decimal_string__type;
mIsReversed: boolean__type;
mTopTransform: transformation__type;
mSnappedPassthroughs: common_base__mSnappedPassthroughs__type;
};

0 comments on commit 901232b

Please sign in to comment.