Posts

Showing posts from August, 2019

Unreal Engine C++ Interfaces

Image
Implementing Simple Interface Introduction  Interface : We need sometime common functionality in our  game-play classes so we define here some functionality or other working objects and implement it a require game-play classes. In C++ we use multiple inheritance to solve this. Unreal Engine provide Interface more power of our game-play classes with Blueprint accessible macros; Require : Visual Studio 2019 Unreal Engine 4.22 C++ Project Creating a UInterface  Add New > New C++ Class > Scroll Down Class >Unreal  UInterface > Next > name it!! Now you can see This type of code .h file #pragma once #include "CoreMinimal.h" #include "UObject/Interface.h" #include "MyFirstInterface.generated.h" // This class does not need to be modified. UINTERFACE(MinimalAPI) class UMyFirstInterface : public UInterface { GENERATED_BODY() }; /**  *  */ class COVERTRACK_API IMyFirstInterface { GENERATED_BODY() // Add interface functions to this class. This is ...

Unreal Engine 4 C++ Game-play Classes

Image
Creating and implementing game-play classes Unreal Engine use C++ for programming language so when we creating game-play C++ class in engine this is comprised in header file (.h) and a source file (.cpp). Header file and Source file Declarations of the class and its members like variables and functions Where the functionality is defined by implementing the function that belong to the class or define in Header file. Unreal engine uses standardized naming scheme so we find instantly what king of class it is. Looking on first letter of class or prefix; Prefix Meaning A Actors and Spawned directly into wold U All game-play objects. These not directly instanced into the world, they belong from actor; Generally objects like Components; Create new c++ class and explore this; Class Headers // Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "GameFramework/Actor.h" #include "ES_SpawanEnemy.gener...

Blog System With Blogger API Integration (MEAN) 2021

Image
Blog System EXPRESS JavaScript and ANGULAR Hello World, I made a Blog System Web Application for My Blogging but i don't use this. Why i don't use i don't know!!! Technology (This project Made on Linux OS System ) Angular (Fronted)  Node JavaScript (Express JavaScript Back-end  ) MongoDB (Database) File System : Back-end -> server.js (this is server back-end file ) Project Learning  -> Fronted Files  Path: https://github.com/lakkyhb/2021_ProjectLearning/tree/master/ProjectLearning/src/app   old Files Link; create-component BlogSystem 28 minutes ago -> Create New Blog (Update Code)   edit-component BlogSystem 28 minutes ago -> Edit Blog (No Source Code)   listcomponent BlogSystem 28 minutes ago -> Showing All Blogs Lists post-view BlogSystem 28 minutes ago -> Full Blog Post app-routing.module.ts BlogSystem 28 minutes ago -> App Routes app.component.css BlogSystem 28 minutes ago app.component.html BlogSystem 28 minutes ago app.compo...