Skip to content

Instantly share code, notes, and snippets.

View Ali-RS's full-sized avatar

Ali-RS Ali-RS

View GitHub Profile
@Ali-RS
Ali-RS / gist:8e3405801255039509d2ce9ed1f7d8b4
Created September 22, 2021 10:24 — forked from nebadon2025/gist:8525f19c88c51a22a285ab283b0339fc
Batch FBX Importer for Blender Python
import os
import bpy
# put the location to the folder where the FBXs are located here in this fashion
# this line will only work on windows ie C:\objects
path_to_obj_dir = os.path.join('C:\\', 'objects')
# get list of all files in directory
file_list = sorted(os.listdir(path_to_obj_dir))
# get a list of files ending in 'fbx'
obj_list = [item for item in file_list if item.endswith('.fbx')]
# loop through the strings in obj_list and add the files to the scene
@Ali-RS
Ali-RS / TestTexturePickApp.java
Created January 9, 2022 05:23 — forked from jcfandino/TestTexturePickApp.java
Picking texture pixel with a ray cast
package com.example;
import com.jme3.app.SimpleApplication;
import com.jme3.asset.plugins.ClasspathLocator;
import com.jme3.collision.CollisionResult;
import com.jme3.collision.CollisionResults;
import com.jme3.font.BitmapText;
import com.jme3.light.AmbientLight;
import com.jme3.material.Material;
import com.jme3.math.ColorRGBA;
@Ali-RS
Ali-RS / Correct_GnuPG_Permission.sh
Created January 13, 2023 09:29 — forked from oseme-techguy/Correct_GnuPG_Permission.sh
This fixes the " gpg: WARNING: unsafe permissions on homedir '/home/path/to/user/.gnupg' " error while using Gnupg .
#!/usr/bin/env bash
# To fix the " gpg: WARNING: unsafe permissions on homedir '/home/path/to/user/.gnupg' " error
# Make sure that the .gnupg directory and its contents is accessibile by your user.
chown -R $(whoami) ~/.gnupg/
# Also correct the permissions and access rights on the directory
chmod 600 ~/.gnupg/*
chmod 700 ~/.gnupg