3,593 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
0
answers
52
views
Why is my custom .svg (edited using Inkscape from a SF Symbols template) not being displayed properly in Xcode?
As a preface, I am a beginner to everything. Needless to say, patience for my ignorance will be greatly appreciated.
I am trying build an app where the user can input a list of numbers and get the ...
1
vote
0
answers
59
views
How do I create a lazy asset loader in bevy?
I want to load assets from a custom zip-like format, or even GoldSrc WAD3 files.
My initial attempt was to use a custom AssetLoader, but I'm not feeling comfortable having to load the entire file's ...
0
votes
0
answers
98
views
FXGL getAssetLoader().loadFont() fails to load TTF font from /assets/ui/fonts/ directory
I'm trying to load a custom TTF font in an FXGL 21.1 game application, but getAssetLoader().loadFont() consistently fails to find the font file, even though it exists in the correct directory ...
2
votes
1
answer
132
views
Assets not being loaded in Laravel 12 using storage:links
I ́ve created a duplicate project of mine to upgrade from Laravel 10 to Laravel 12. As far as the PHP code, routes, and database everything went well as expected.
Yet, in my Laravel 10 project I had my ...
1
vote
1
answer
96
views
Images inside assets folder not loading after restarting the app
I have a Flutter project and I added some images inside:
assets/images/
I also added the folder in pubspec.yaml:
flutter:
assets:
- assets/images/
The images load correctly the first time when ...
0
votes
0
answers
26
views
How to dynamically load images in a capacitor in a native environment?
I have classic web folders structure like:
index.html
images/logo.png
js/index.js
I would like to add the logo.png to using jQuery appendTo function:
$("<img/>", {
src: "...
0
votes
0
answers
32
views
Wordpress assets loading. Uncaught TypeError: Failed to resolve module specifier
I hope you can help me with one, it's drivinig me crazy :(
I recently splitted a giant file called admin.js into many modules, using these two WordPress functions:
wp_register_script_module
...
0
votes
0
answers
30
views
How can I programmatically convert multiple CSS files located in the ui.content module of my AEM codebase into DAM assets after deployment?
I have placed a folder containing multiple CSS files inside the ui.content module and configured both filter.xml and .content.xml to deploy it to /content/dam/my-project. After deploying the codebase, ...
0
votes
3
answers
122
views
How to load Tiled (.tmx) map in Flutter with Flame?
I’m trying to load a .tmx map into a Flutter Flame game using flame_tiled.
Here’s my pubspec.yaml asset declaration:
flutter:
assets:
- assets/maps/
- assets/tiles/`
My folder structure ...
0
votes
0
answers
85
views
dependencies between assets in airflow
I define two assets in airflow 3.0.3 that after running first asset (user) second asset (user_location) run too. the code is like this:
from airflow.sdk import asset, Asset, Context
from airflow....
1
vote
0
answers
55
views
Webpack changes URLs in CSS during build: how to keep original relative paths in url()
I have a CSS file with a @font-face declaration where font paths are specified as url("./icons/tficons.woff2"). However, when building with Webpack, these paths get rewritten to url(../tflex-...
1
vote
0
answers
34
views
pixi js- how to validate texture after Assets.load on URL image source
I have followed the documentation below to load an asset using a wikipedia image URL.
https://pixijs.download/v7.4.2/docs/PIXI.Assets.html
However, as some of these image URLs may be outdated, ...
0
votes
0
answers
95
views
How to send RPC command to a related device of an asset
In thingsboards Professional Edition I have added some devices by name Grp_Rpc_1 and Grp_Rpc_2 and each of these devices have a Outbound Relation of To, relation type is Contains, From Entity type is ...
2
votes
1
answer
69
views
How can I query the name of the currently loading asset in LibGDX?
I am using LibGDX's AssetManager like this in my create() method:
ASSETS = new AssetManager();
FileHandle assetHandle = Gdx.files.internal("assets.txt");
String text = assetHandle....
1
vote
1
answer
88
views
Reading a CSV in an Android Studio Java Application
I'm creating an Android application in Java using Android Studio and the OpenCSV package. It seems to work fine when I upload the csv file to my device or emulator's file system and access it that way,...