Giter Site home page Giter Site logo

cge-3d-particle-emitter's Introduction

Kagamma

cge-3d-particle-emitter's People

Contributors

kagamma avatar michaliskambi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

cge-3d-particle-emitter's Issues

Possibly ExtractRelativeDataPath can be removed, and the work done in more portable way

ExtractRelativeDataPath inside demos/editor/gamestatemain.pas does URL processing, assuming it is a file: URL.

Possibly it can be done cleaner (in a way that accounts that in URL some chars may be encoded), and in a way that for sure works on all platforms.

Do you want to just convert URL to a filename? Because I see ExtractRelativeDataPath is used only for a call to Effect.Save, that seems to expect a filename, since it uses TFileStream.Create(AURL, ...).

Then

  1. Use URLToFilenameSafe from CastleURIUtils.

  2. Or, even better: do nothing (just call Effect.Save(URL), and remove ExtractRelativeDataPath) and inside TCastle3DParticleEffect.Save support URLs. You can just replace

    FS := TFileStream.Create(AURL, fmCreate);
    

    with

    S := URLSaveStream(AURL);
    

    (S is a now a general TStream) and maybe that is enough.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.