XGRIDSDocs
  • 简体中文
  • English
  • 繁體中文
  • 日本語
  • Deutsch
  • Español
  • Italiano
  • Français
  • Русский
  • 简体中文
  • English
  • 繁體中文
  • 日本語
  • Deutsch
  • Español
  • Italiano
  • Français
  • Русский
  • PortalCam

    • Product Overview
    • Basic Operation
    • Using the LCC Scan App
    • Maintenance and Care
    • FAQ
  • Lixel K Series

    • Lixel K1

      • Product Overview
      • Basic Operation
      • Device Activation and Connection
      • Scanning Workflow
      • Acquire Point Cloud Data with Absolute Coordinate
      • Map Fusion
      • Route Planning Suggestions for Typical Scenes
      • Precautions
      • FAQ
    • Lixel K2

      • Product Overview
      • Basic Operation
      • Device Activation and Connection
      • Scanning Workflow
      • Acquire Point Cloud Data with Absolute Coordinate
      • Map Fusion
      • Route Planning Suggestions for Typical Scenes
      • Precautions
      • FAQ
  • Lixel L Series

    • Lixel L2 Pro

      • Product Overview
      • Basic Operation
      • Device Activation and Connection
      • Scanning Workflow
      • Acquire Point Cloud Data with Absolute Coordinate
      • Measure Point
      • Appendix
      • FAQ
  • Lixel Studio

    • Version and Copyright
    • Installation and Activation
    • Software Interface
    • File Operations
    • Project Processing
    • Tools
    • 2D Drawing
    • Applications
    • Settings
    • Device Connection
  • Lixel CyberColor

    • LCC Studio

      • Getting Started
      • Version and Updates
      • Download and Installation
      • Interface Overview and Navigation
      • Before Reconstruction
      • Model Reconstruction
      • Single Model Reconstruction
      • Map Fusion
      • Aerial-Ground Fusion
      • Aerial Reconstruction
      • My Models
      • Other Features
      • Settings and Account
      • Converter
      • Video Reconstruction
      • FAQ
    • LCC Scene Editor

      • Version & Updates
      • Account & Login
      • Product Overview & Home
      • Editor Interface
      • Scene Navigation Modes
      • File
      • Settings
      • Edit Operations
      • Window
      • Global Toolbar
      • Assets & Properties
      • Left Toolbar
      • Viewpoints
      • Portal
      • Skybox
      • Annotations
      • Measurement
      • Flythrough
      • Scene Report
      • 3D Layout
      • Mini-Map
      • Preview Mode (Viewer)
      • Help
      • FAQ
      • Spawn Point
    • LCC Model Editor

      • Version and Updates
      • User Guide
      • Overview and Interface
      • File Operations
      • Selectors
      • Editing Models
      • Measurement
      • Color Grading
      • Asset Management
      • Settings and Help
      • FAQ
    • Capture Guide

      • Overview
      • Capture Devices Overview
      • General Capture Principles
      • Indoor Scene Capture
      • Outdoor Scene Capture
      • Large-Scale Capture (Map Fusion)
      • Aerial-Ground Map Fusion Capture
      • Object Capture
      • People Capture
      • Video Reconstruction Capture
      • HD Enhancement
      • Control Points (Lixel P1)
      • FAQ and Troubleshooting
    • Version History
  • Plugin & SDK

    • Unreal

      • Introduction
      • Quick Start - Windows
      • Quick Start - Linux
      • Quick Start - Quest3
      • Editions and Licensing
      • Rendering
      • Visual Settings
      • Normals and Lighting
      • Scene Editing
      • Performance Parameters
      • Performance Guide
      • Third-party and Engine Plugin Integration
      • Proxy Mesh
      • Loading Animation
      • Collision
      • Navigation System Support
      • Single Layer Water Support
      • Localization
      • FAQ
      • Troubleshooting
      • Logging and Diagnostics
      • Contact Us
      • API Reference

        • ALCCActorBase
        • ULCCComponentBase
        • ULCCComponent
        • ULCC2Component
        • SOG / SPZ / PLY Actors
        • ALCC2ProxyMesh
        • ALCCClippingVolume
        • ALCCSectionPlane
        • ULCCUtilLibrary
        • Enums
        • Structs
      • Changelog

        • v3.3.1
        • v3.0.0
        • v2.2.1
        • v1.0.0
        • v0.9.0
        • v0.8.0
        • v0.7.1
        • v0.6.1
        • v0.5.2
        • v0.4.1
        • v0.4.0
        • v0.3.0
        • v0.0.5
        • v0.0.4
        • v0.0.3
        • v0.0.2
        • v0.0.1

3DGS Appear and Disappear Animations

Overview

The loading animation plays while LCC data loads. In the editor, click the Refresh button to trigger a reload and preview the animation.

Previewing the loading animation with the Refresh button

Clicking the Refresh button to preview the loading animation

  • 3DGS mode: two-stage animation (nothing → point cloud → 3DGS)
The two stages of the 3DGS loading animation

The 3DGS loading animation transitions from point cloud to 3DGS

Demonstration of the two-stage 3DGS loading animation

Demonstration of the two-stage 3DGS loading animation

  • Point cloud mode: one-stage animation (nothing → point cloud)
Point cloud loading animation stage

The one-stage loading animation of point cloud mode

Demonstration of the point cloud loading animation

Demonstration of the point cloud mode loading animation

Parameters

The control parameters live under the Animation category of LCCComponent:

LCC loading animation parameter panel

Configuring the loading animation parameters in the Animation category

ParameterDefaultDescription
bEnableAnimationfalseEnables the loading animation
AnimationSpeed100Animation speed
AnimationMinScale0.001Point size of the first stage (3DGS mode only)
FirstStageDelay0First stage delay in seconds. The data is not displayed before it starts
SecondStageDelay-Second stage delay (point cloud → 3DGS). Equal to FirstStageDelay skips the first stage
EnvironmentDelay-Environment node delay. The environment does not take part in the animation and appears directly when the time is reached
AnimationOriginOffset(0,0,0)Offset of the scan origin
FirstStageColorGoldScan line color of the first stage (an alpha of 0 hides the scan line)
SecondStageColor-Scan line color of the second stage
ScanLineThickness5Scan line width

Inverse Animation

With inverse animation enabled, the animation contracts from the distance toward the center and disappears.

LCC inverse animation parameter panel

Configuring the inverse animation parameters in the Animation category

ParameterDefaultDescription
Inverse AnimationfalseEnables inverse animation. Once enabled, the animation contracts from the distance toward the center and disappears
Inverse Max Range Time30Sets the initial visible range of the inverse animation. The value needs to cover the whole scene
Demonstration of the two-stage 3DGS inverse animation

Demonstration of the two-stage 3DGS inverse animation

Demonstration of the point cloud inverse animation

Demonstration of the point cloud mode inverse animation

Controlling the Animation at Runtime

Besides configuring it in the Details panel, the animation can also be controlled at runtime from code or Blueprint.

Replaying the Animation

Besides switching the animation on and off, SetEnableAnimation also resets the animation timing origin to the current time. It is therefore not limited to the loading stage: calling it at any moment replays the animation from the beginning.

// Replay the animation on an already loaded scene without reloading the data
Component->SetEnableAnimation(true);

The matching Blueprint node is Set Enable Animation.

Order of Parameters and the Switch

Once the animation starts, it follows the current parameters. Parameters can still be changed after it starts and the change takes effect on the next frame, but that is a mid-play adjustment and the animation does not restart from the beginning.

To make parameters apply to the whole animation, set the parameters first and call SetEnableAnimation last:

// Set the parameters first
Component->AnimationSpeed = 30.0f;
Component->AnimationMinScale = 0.1f;
Component->SecondStageDelay = 1.0f;
Component->bUseFirstStageColor = true;
Component->FirstStageColor = FLinearColor(0.f, 0.8f, 1.f, 1.f);

// Turn on the switch last; the animation starts at this moment with the parameters above
Component->SetEnableAnimation(true);

To change a parameter during playback (adjusting the speed in real time, for example), change the property directly without calling SetEnableAnimation again. Conversely, calling SetEnableAnimation(true) during playback restarts the animation, so avoid repeated calls in normal mode.

Playing the Disappear Animation

Set bInverseAnimation to true, then call SetEnableAnimation(true) to reset the timeline:

// Disappear
Component->bInverseAnimation = true;
Component->SetEnableAnimation(true);

// Appear again
Component->bInverseAnimation = false;   // remember to reset
Component->SetEnableAnimation(true);

Text Blueprint:

[Custom Event: PlayDisappear]
        │
        ▼
[Set Inverse Animation]
        Target = (LCC Component)
        bInverse Animation = true
        │
        ▼
[Set Enable Animation]
        Target = (LCC Component)
        b In Enable Animation = true

Practical Notes

  • Set bInverseAnimation before SetEnableAnimation. In the reverse order the timeline is reset before the direction changes, and the animation plays once in the old direction.
  • Reset bInverseAnimation to false after each appear animation finishes. Otherwise the same object stays in inverse mode the next time it is used.
  • The default 30 seconds of InverseMaxRangeTime is too large for fast interaction and needs lowering. This value multiplied by AnimationSpeed gives the initial visible radius, which must be large enough to cover the whole scene, but too large a value makes the disappear process drag.
  • Avoid repeated calls to SetEnableAnimation(true) in normal mode. Every call resets the timeline and the animation keeps restarting from the beginning.
Prev
Proxy Mesh
Next
Collision